mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
8dd2e5b8d9
PSTACK, libmysqld and MySQL filesystem UPDATE ... ORDER BY DELETE ... ORDER BY New faster fulltext handling Faster compressed keys Makefile.am: Added support for pstack and libmysqld_dir acconfig.h: MySQL filesystem and PSTACK acinclude.m4: MySQL File system client/mysql.cc: Support for --xml configure.in: Pstack, MySQL FS and libmysqld_dir include/ft_global.h: Faster fulltext include/my_pthread.h: Made c++ safe include/myisam.h: Update for faster fulltext include/mysql_com.h: new my_net_read() include/violite.h: libmysqld libmysql/net.c: New protocol that supports big packets myisam/Makefile.am: Faster fulltext myisam/ft_parser.c: Faster fulltext myisam/ft_search.c: Faster fulltext myisam/ft_update.c: Faster fulltext myisam/ftdefs.h: Faster fulltext myisam/mi_check.c: Faster fulltext myisam/mi_open.c: Faster compressed keys myisam/mi_search.c: Faster compressed keys myisam/mi_update.c: Faster compressed keys myisam/myisamdef.h: Faster compressed keys myisam/sort.c: Faster compressed keys mysql-test/mysql-test-run.sh: --skip-innobase and --skip-bdb sql/ChangeLog: Changelog sql/Makefile.am: PSTACK sql/mysql_priv.h: New ORDER BY options and libmysqld sql/mysqld.cc: PSTACK sql/net_serv.cc: New protocol that supports big packets sql/share/estonian/errmsg.txt: New error messages sql/sql_base.cc: Better list_open_tabels sql/sql_delete.cc: ORDER BY for delete sql/sql_lex.cc: Added language convertation of all strings sql/sql_parse.cc: Changes for libmysqld Use new ORDER BY options sql/sql_show.cc: Character set convertations Use new list_open_tables function. sql/sql_update.cc: UPDATE ... ORDER BY sql/sql_yacc.yy: Clean up symbol definitions DELETE .. ORDER BY UPDATE .. ORDER BY sql/table.h: new OPEN_TABLE_LIST structure BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
37 lines
883 B
C
37 lines
883 B
C
#ifndef __GNU_STAB__
|
|
|
|
/* Indicate the GNU stab.h is in use. */
|
|
|
|
#define __GNU_STAB__
|
|
|
|
#define __define_stab(NAME, CODE, STRING) NAME=CODE,
|
|
#define __define_stab_duplicate(NAME, CODE, STRING) NAME=CODE,
|
|
|
|
enum __stab_debug_code
|
|
{
|
|
#include "aout/stab.def"
|
|
LAST_UNUSED_STAB_CODE
|
|
};
|
|
|
|
#undef __define_stab
|
|
|
|
/* Definitions of "desc" field for N_SO stabs in Solaris2. */
|
|
|
|
#define N_SO_AS 1
|
|
#define N_SO_C 2
|
|
#define N_SO_ANSI_C 3
|
|
#define N_SO_CC 4 /* C++ */
|
|
#define N_SO_FORTRAN 5
|
|
#define N_SO_PASCAL 6
|
|
|
|
/* Solaris2: Floating point type values in basic types. */
|
|
|
|
#define NF_NONE 0
|
|
#define NF_SINGLE 1 /* IEEE 32-bit */
|
|
#define NF_DOUBLE 2 /* IEEE 64-bit */
|
|
#define NF_COMPLEX 3 /* Fortran complex */
|
|
#define NF_COMPLEX16 4 /* Fortran double complex */
|
|
#define NF_COMPLEX32 5 /* Fortran complex*16 */
|
|
#define NF_LDOUBLE 6 /* Long double (whatever that is) */
|
|
|
|
#endif /* __GNU_STAB_ */
|