| my_config.h | | my_config.h | |
| | | | |
| skipping to change at line 631 | | skipping to change at line 631 | |
| | | | |
| /* Define to 1 if you have the `posix_fallocate' function. */ | | /* Define to 1 if you have the `posix_fallocate' function. */ | |
| #define HAVE_POSIX_FALLOCATE 1 | | #define HAVE_POSIX_FALLOCATE 1 | |
| | | | |
| /* Signal handling is POSIX (sigset/sighold, etc) */ | | /* Signal handling is POSIX (sigset/sighold, etc) */ | |
| #define HAVE_POSIX_SIGNALS 1 | | #define HAVE_POSIX_SIGNALS 1 | |
| | | | |
| /* Define to 1 if you have the `pread' function. */ | | /* Define to 1 if you have the `pread' function. */ | |
| #define HAVE_PREAD 1 | | #define HAVE_PREAD 1 | |
| | | | |
|
| | | /* Define to 1 if you have the `printstack' function. */ | |
| | | /* #undef HAVE_PRINTSTACK */ | |
| | | | |
| /* Define to 1 if you have the `pthread_attr_create' function. */ | | /* Define to 1 if you have the `pthread_attr_create' function. */ | |
| /* #undef HAVE_PTHREAD_ATTR_CREATE */ | | /* #undef HAVE_PTHREAD_ATTR_CREATE */ | |
| | | | |
| /* Define to 1 if you have the `pthread_attr_getstacksize' function. */ | | /* Define to 1 if you have the `pthread_attr_getstacksize' function. */ | |
| #define HAVE_PTHREAD_ATTR_GETSTACKSIZE 1 | | #define HAVE_PTHREAD_ATTR_GETSTACKSIZE 1 | |
| | | | |
| /* Define to 1 if you have the `pthread_attr_setprio' function. */ | | /* Define to 1 if you have the `pthread_attr_setprio' function. */ | |
| /* #undef HAVE_PTHREAD_ATTR_SETPRIO */ | | /* #undef HAVE_PTHREAD_ATTR_SETPRIO */ | |
| | | | |
| /* Define to 1 if you have the `pthread_attr_setschedparam' function. */ | | /* Define to 1 if you have the `pthread_attr_setschedparam' function. */ | |
| | | | |
| skipping to change at line 1288 | | skipping to change at line 1291 | |
| /* #undef USE_MYSYS_NEW */ | | /* #undef USE_MYSYS_NEW */ | |
| | | | |
| /* used new readline interface (are rl_completion_func_t and | | /* used new readline interface (are rl_completion_func_t and | |
| rl_compentry_func_t defined) */ | | rl_compentry_func_t defined) */ | |
| /* #undef USE_NEW_READLINE_INTERFACE */ | | /* #undef USE_NEW_READLINE_INTERFACE */ | |
| | | | |
| /* the pstack backtrace library */ | | /* the pstack backtrace library */ | |
| /* #undef USE_PSTACK */ | | /* #undef USE_PSTACK */ | |
| | | | |
| /* Version number of package */ | | /* Version number of package */ | |
|
| #define VERSION "5.5.0-m2" | | #define VERSION "5.5.1-m2" | |
| | | | |
| /* sighandler type is void (*signal ()) (); */ | | /* sighandler type is void (*signal ()) (); */ | |
| #define VOID_SIGHANDLER 1 | | #define VOID_SIGHANDLER 1 | |
| | | | |
| /* Include Archive Storage Engine into mysqld */ | | /* Include Archive Storage Engine into mysqld */ | |
| /* #undef WITH_ARCHIVE_STORAGE_ENGINE */ | | /* #undef WITH_ARCHIVE_STORAGE_ENGINE */ | |
| | | | |
| /* Include Basic Write-only Read-never tables into mysqld */ | | /* Include Basic Write-only Read-never tables into mysqld */ | |
| /* #undef WITH_BLACKHOLE_STORAGE_ENGINE */ | | /* #undef WITH_BLACKHOLE_STORAGE_ENGINE */ | |
| | | | |
| | | | |
End of changes. 2 change blocks. |
| 1 lines changed or deleted | | 4 lines changed or added | |
|
| my_pthread.h | | my_pthread.h | |
| | | | |
| skipping to change at line 70 | | skipping to change at line 70 | |
| HANDLE events[MAX_EVENTS]; | | HANDLE events[MAX_EVENTS]; | |
| HANDLE broadcast_block_event; | | HANDLE broadcast_block_event; | |
| | | | |
| } pthread_cond_t; | | } pthread_cond_t; | |
| | | | |
| typedef int pthread_mutexattr_t; | | typedef int pthread_mutexattr_t; | |
| #define pthread_self() GetCurrentThreadId() | | #define pthread_self() GetCurrentThreadId() | |
| #define pthread_handler_t EXTERNC void * __cdecl | | #define pthread_handler_t EXTERNC void * __cdecl | |
| typedef void * (__cdecl *pthread_handler)(void *); | | typedef void * (__cdecl *pthread_handler)(void *); | |
| | | | |
|
| | | typedef volatile LONG my_pthread_once_t; | |
| | | #define MY_PTHREAD_ONCE_INIT 0 | |
| | | #define MY_PTHREAD_ONCE_INPROGRESS 1 | |
| | | #define MY_PTHREAD_ONCE_DONE 2 | |
| | | | |
| /* | | /* | |
| Struct and macros to be used in combination with the | | Struct and macros to be used in combination with the | |
| windows implementation of pthread_cond_timedwait | | windows implementation of pthread_cond_timedwait | |
| */ | | */ | |
| | | | |
| /* | | /* | |
| Declare a union to make sure FILETIME is properly aligned | | Declare a union to make sure FILETIME is properly aligned | |
| so it can be used directly as a 64 bit value. The value | | so it can be used directly as a 64 bit value. The value | |
| stored is in 100ns units. | | stored is in 100ns units. | |
| */ | | */ | |
| | | | |
| skipping to change at line 113 | | skipping to change at line 118 | |
| int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); | | int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex); | |
| int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, | | int pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex, | |
| struct timespec *abstime); | | struct timespec *abstime); | |
| int pthread_cond_signal(pthread_cond_t *cond); | | int pthread_cond_signal(pthread_cond_t *cond); | |
| int pthread_cond_broadcast(pthread_cond_t *cond); | | int pthread_cond_broadcast(pthread_cond_t *cond); | |
| int pthread_cond_destroy(pthread_cond_t *cond); | | int pthread_cond_destroy(pthread_cond_t *cond); | |
| int pthread_attr_init(pthread_attr_t *connect_att); | | int pthread_attr_init(pthread_attr_t *connect_att); | |
| int pthread_attr_setstacksize(pthread_attr_t *connect_att,DWORD stack); | | int pthread_attr_setstacksize(pthread_attr_t *connect_att,DWORD stack); | |
| int pthread_attr_setprio(pthread_attr_t *connect_att,int priority); | | int pthread_attr_setprio(pthread_attr_t *connect_att,int priority); | |
| int pthread_attr_destroy(pthread_attr_t *connect_att); | | int pthread_attr_destroy(pthread_attr_t *connect_att); | |
|
| | | int my_pthread_once(my_pthread_once_t *once_control,void (*init_routine)(vo
id)); | |
| struct tm *localtime_r(const time_t *timep,struct tm *tmp); | | struct tm *localtime_r(const time_t *timep,struct tm *tmp); | |
| struct tm *gmtime_r(const time_t *timep,struct tm *tmp); | | struct tm *gmtime_r(const time_t *timep,struct tm *tmp); | |
| | | | |
| void pthread_exit(void *a); | | void pthread_exit(void *a); | |
| int pthread_join(pthread_t thread, void **value_ptr); | | int pthread_join(pthread_t thread, void **value_ptr); | |
| | | | |
| #define ETIMEDOUT 145 /* Win32 doesn't have this */ | | #define ETIMEDOUT 145 /* Win32 doesn't have this */ | |
| #define HAVE_LOCALTIME_R 1 | | #define HAVE_LOCALTIME_R 1 | |
| #define _REENTRANT 1 | | #define _REENTRANT 1 | |
| #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1 | | #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1 | |
| | | | |
| skipping to change at line 188 | | skipping to change at line 194 | |
| | | | |
| extern int my_pthread_getprio(pthread_t thread_id); | | extern int my_pthread_getprio(pthread_t thread_id); | |
| | | | |
| #define pthread_key(T,V) pthread_key_t V | | #define pthread_key(T,V) pthread_key_t V | |
| #define my_pthread_getspecific_ptr(T,V) my_pthread_getspecific(T,(V)) | | #define my_pthread_getspecific_ptr(T,V) my_pthread_getspecific(T,(V)) | |
| #define my_pthread_setspecific_ptr(T,V) pthread_setspecific(T,(void*) (V)) | | #define my_pthread_setspecific_ptr(T,V) pthread_setspecific(T,(void*) (V)) | |
| #define pthread_detach_this_thread() | | #define pthread_detach_this_thread() | |
| #define pthread_handler_t EXTERNC void * | | #define pthread_handler_t EXTERNC void * | |
| typedef void *(* pthread_handler)(void *); | | typedef void *(* pthread_handler)(void *); | |
| | | | |
|
| | | #define my_pthread_once_t pthread_once_t | |
| | | #define MY_PTHREAD_ONCE_INIT PTHREAD_ONCE_INIT | |
| | | #define my_pthread_once(C,F) pthread_once(C,F) | |
| | | | |
| /* Test first for RTS or FSU threads */ | | /* Test first for RTS or FSU threads */ | |
| | | | |
| #if defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM) | | #if defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM) | |
| #define HAVE_rts_threads | | #define HAVE_rts_threads | |
| extern int my_pthread_create_detached; | | extern int my_pthread_create_detached; | |
| #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C)) | | #define pthread_sigmask(A,B,C) sigprocmask((A),(B),(C)) | |
| #define PTHREAD_CREATE_DETACHED &my_pthread_create_detached | | #define PTHREAD_CREATE_DETACHED &my_pthread_create_detached | |
| #define PTHREAD_SCOPE_SYSTEM PTHREAD_SCOPE_GLOBAL | | #define PTHREAD_SCOPE_SYSTEM PTHREAD_SCOPE_GLOBAL | |
| #define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_LOCAL | | #define PTHREAD_SCOPE_PROCESS PTHREAD_SCOPE_LOCAL | |
| #define USE_ALARM_THREAD | | #define USE_ALARM_THREAD | |
| | | | |
End of changes. 3 change blocks. |
| 0 lines changed or deleted | | 10 lines changed or added | |
|
| my_sys.h | | my_sys.h | |
| | | | |
| skipping to change at line 978 | | skipping to change at line 978 | |
| extern CHARSET_INFO *get_charset_by_csname(const char *cs_name, | | extern CHARSET_INFO *get_charset_by_csname(const char *cs_name, | |
| uint cs_flags, myf my_flags); | | uint cs_flags, myf my_flags); | |
| | | | |
| extern my_bool resolve_charset(const char *cs_name, | | extern my_bool resolve_charset(const char *cs_name, | |
| CHARSET_INFO *default_cs, | | CHARSET_INFO *default_cs, | |
| CHARSET_INFO **cs); | | CHARSET_INFO **cs); | |
| extern my_bool resolve_collation(const char *cl_name, | | extern my_bool resolve_collation(const char *cl_name, | |
| CHARSET_INFO *default_cl, | | CHARSET_INFO *default_cl, | |
| CHARSET_INFO **cl); | | CHARSET_INFO **cl); | |
| | | | |
|
| extern void free_charsets(void); | | | |
| extern char *get_charsets_dir(char *buf); | | extern char *get_charsets_dir(char *buf); | |
| extern my_bool my_charset_same(CHARSET_INFO *cs1, CHARSET_INFO *cs2); | | extern my_bool my_charset_same(CHARSET_INFO *cs1, CHARSET_INFO *cs2); | |
| extern my_bool init_compiled_charsets(myf flags); | | extern my_bool init_compiled_charsets(myf flags); | |
| extern void add_compiled_collation(CHARSET_INFO *cs); | | extern void add_compiled_collation(CHARSET_INFO *cs); | |
| extern size_t escape_string_for_mysql(CHARSET_INFO *charset_info, | | extern size_t escape_string_for_mysql(CHARSET_INFO *charset_info, | |
| char *to, size_t to_length, | | char *to, size_t to_length, | |
| const char *from, size_t length); | | const char *from, size_t length); | |
| #ifdef __WIN__ | | #ifdef __WIN__ | |
| #define BACKSLASH_MBTAIL | | #define BACKSLASH_MBTAIL | |
| /* File system character set */ | | /* File system character set */ | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 0 lines changed or added | |
|
| mysql.h | | mysql.h | |
| | | | |
| skipping to change at line 458 | | skipping to change at line 458 | |
| MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table, | | MYSQL_RES * STDCALL mysql_list_fields(MYSQL *mysql, const char *table, | |
| const char *wild); | | const char *wild); | |
| unsigned long STDCALL mysql_escape_string(char *to,const char *from, | | unsigned long STDCALL mysql_escape_string(char *to,const char *from, | |
| unsigned long from_length); | | unsigned long from_length); | |
| unsigned long STDCALL mysql_hex_string(char *to,const char *from, | | unsigned long STDCALL mysql_hex_string(char *to,const char *from, | |
| unsigned long from_length); | | unsigned long from_length); | |
| unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql, | | unsigned long STDCALL mysql_real_escape_string(MYSQL *mysql, | |
| char *to,const char *from, | | char *to,const char *from, | |
| unsigned long length); | | unsigned long length); | |
| void STDCALL mysql_debug(const char *debug); | | void STDCALL mysql_debug(const char *debug); | |
|
| char * STDCALL mysql_odbc_escape_string(MYSQL *mysql, | | | |
| char *to, | | | |
| unsigned long to_length, | | | |
| const char *from, | | | |
| unsigned long from_length, | | | |
| void *param, | | | |
| char * | | | |
| (*extend_buffer) | | | |
| (void *, char *to, | | | |
| unsigned long *length)); | | | |
| void STDCALL myodbc_remove_escape(MYSQL *mysql,char *name); | | void STDCALL myodbc_remove_escape(MYSQL *mysql,char *name); | |
| unsigned int STDCALL mysql_thread_safe(void); | | unsigned int STDCALL mysql_thread_safe(void); | |
| my_bool STDCALL mysql_embedded(void); | | my_bool STDCALL mysql_embedded(void); | |
| my_bool STDCALL mysql_read_query_result(MYSQL *mysql); | | my_bool STDCALL mysql_read_query_result(MYSQL *mysql); | |
| | | | |
| /* | | /* | |
| The following definitions are added for the enhanced | | The following definitions are added for the enhanced | |
| client-server protocol | | client-server protocol | |
| */ | | */ | |
| | | | |
| | | | |
End of changes. 1 change blocks. |
| 10 lines changed or deleted | | 0 lines changed or added | |
|
| mysql_version.h | | mysql_version.h | |
| | | | |
| skipping to change at line 12 | | skipping to change at line 12 | |
| This file is public domain and comes with NO WARRANTY of any kind */ | | This file is public domain and comes with NO WARRANTY of any kind */ | |
| | | | |
| /* Version numbers for protocol & mysqld */ | | /* Version numbers for protocol & mysqld */ | |
| | | | |
| #ifndef _mysql_version_h | | #ifndef _mysql_version_h | |
| #define _mysql_version_h | | #define _mysql_version_h | |
| #ifdef _CUSTOMCONFIG_ | | #ifdef _CUSTOMCONFIG_ | |
| #include <custom_conf.h> | | #include <custom_conf.h> | |
| #else | | #else | |
| #define PROTOCOL_VERSION 10 | | #define PROTOCOL_VERSION 10 | |
|
| #define MYSQL_SERVER_VERSION "5.5.0-m2" | | #define MYSQL_SERVER_VERSION "5.5.1-m2" | |
| #define MYSQL_BASE_VERSION "mysqld-5.5" | | #define MYSQL_BASE_VERSION "mysqld-5.5" | |
| #define MYSQL_SERVER_SUFFIX_DEF "" | | #define MYSQL_SERVER_SUFFIX_DEF "" | |
| #define FRM_VER 6 | | #define FRM_VER 6 | |
|
| #define MYSQL_VERSION_ID 50500 | | #define MYSQL_VERSION_ID 50501 | |
| #define MYSQL_PORT 3306 | | #define MYSQL_PORT 3306 | |
| #define MYSQL_PORT_DEFAULT 0 | | #define MYSQL_PORT_DEFAULT 0 | |
| #define MYSQL_UNIX_ADDR "/tmp/mysql.sock" | | #define MYSQL_UNIX_ADDR "/tmp/mysql.sock" | |
| #define MYSQL_CONFIG_NAME "my" | | #define MYSQL_CONFIG_NAME "my" | |
| #define MYSQL_COMPILATION_COMMENT "Source distribution" | | #define MYSQL_COMPILATION_COMMENT "Source distribution" | |
| | | | |
| /* mysqld compile time options */ | | /* mysqld compile time options */ | |
| #endif /* _CUSTOMCONFIG_ */ | | #endif /* _CUSTOMCONFIG_ */ | |
| | | | |
| #ifndef LICENSE | | #ifndef LICENSE | |
| | | | |
End of changes. 2 change blocks. |
| 2 lines changed or deleted | | 2 lines changed or added | |
|
| mysqld_ername.h | | mysqld_ername.h | |
| | | | |
| skipping to change at line 489 | | skipping to change at line 489 | |
| { "ER_FOREIGN_SERVER_EXISTS", 1476 }, | | { "ER_FOREIGN_SERVER_EXISTS", 1476 }, | |
| { "ER_FOREIGN_SERVER_DOESNT_EXIST", 1477 }, | | { "ER_FOREIGN_SERVER_DOESNT_EXIST", 1477 }, | |
| { "ER_ILLEGAL_HA_CREATE_OPTION", 1478 }, | | { "ER_ILLEGAL_HA_CREATE_OPTION", 1478 }, | |
| { "ER_PARTITION_REQUIRES_VALUES_ERROR", 1479 }, | | { "ER_PARTITION_REQUIRES_VALUES_ERROR", 1479 }, | |
| { "ER_PARTITION_WRONG_VALUES_ERROR", 1480 }, | | { "ER_PARTITION_WRONG_VALUES_ERROR", 1480 }, | |
| { "ER_PARTITION_MAXVALUE_ERROR", 1481 }, | | { "ER_PARTITION_MAXVALUE_ERROR", 1481 }, | |
| { "ER_PARTITION_SUBPARTITION_ERROR", 1482 }, | | { "ER_PARTITION_SUBPARTITION_ERROR", 1482 }, | |
| { "ER_PARTITION_SUBPART_MIX_ERROR", 1483 }, | | { "ER_PARTITION_SUBPART_MIX_ERROR", 1483 }, | |
| { "ER_PARTITION_WRONG_NO_PART_ERROR", 1484 }, | | { "ER_PARTITION_WRONG_NO_PART_ERROR", 1484 }, | |
| { "ER_PARTITION_WRONG_NO_SUBPART_ERROR", 1485 }, | | { "ER_PARTITION_WRONG_NO_SUBPART_ERROR", 1485 }, | |
|
| { "ER_CONST_EXPR_IN_PARTITION_FUNC_ERROR", 1486 }, | | { "ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR", 1486 }, | |
| { "ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR", 1487 }, | | { "ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR", 1487 }, | |
| { "ER_FIELD_NOT_FOUND_PART_ERROR", 1488 }, | | { "ER_FIELD_NOT_FOUND_PART_ERROR", 1488 }, | |
| { "ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR", 1489 }, | | { "ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR", 1489 }, | |
| { "ER_INCONSISTENT_PARTITION_INFO_ERROR", 1490 }, | | { "ER_INCONSISTENT_PARTITION_INFO_ERROR", 1490 }, | |
| { "ER_PARTITION_FUNC_NOT_ALLOWED_ERROR", 1491 }, | | { "ER_PARTITION_FUNC_NOT_ALLOWED_ERROR", 1491 }, | |
| { "ER_PARTITIONS_MUST_BE_DEFINED_ERROR", 1492 }, | | { "ER_PARTITIONS_MUST_BE_DEFINED_ERROR", 1492 }, | |
| { "ER_RANGE_NOT_INCREASING_ERROR", 1493 }, | | { "ER_RANGE_NOT_INCREASING_ERROR", 1493 }, | |
| { "ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR", 1494 }, | | { "ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR", 1494 }, | |
| { "ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR", 1495 }, | | { "ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR", 1495 }, | |
| { "ER_PARTITION_ENTRY_ERROR", 1496 }, | | { "ER_PARTITION_ENTRY_ERROR", 1496 }, | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|
| mysqld_error.h | | mysqld_error.h | |
| | | | |
| skipping to change at line 490 | | skipping to change at line 490 | |
| #define ER_FOREIGN_SERVER_EXISTS 1476 | | #define ER_FOREIGN_SERVER_EXISTS 1476 | |
| #define ER_FOREIGN_SERVER_DOESNT_EXIST 1477 | | #define ER_FOREIGN_SERVER_DOESNT_EXIST 1477 | |
| #define ER_ILLEGAL_HA_CREATE_OPTION 1478 | | #define ER_ILLEGAL_HA_CREATE_OPTION 1478 | |
| #define ER_PARTITION_REQUIRES_VALUES_ERROR 1479 | | #define ER_PARTITION_REQUIRES_VALUES_ERROR 1479 | |
| #define ER_PARTITION_WRONG_VALUES_ERROR 1480 | | #define ER_PARTITION_WRONG_VALUES_ERROR 1480 | |
| #define ER_PARTITION_MAXVALUE_ERROR 1481 | | #define ER_PARTITION_MAXVALUE_ERROR 1481 | |
| #define ER_PARTITION_SUBPARTITION_ERROR 1482 | | #define ER_PARTITION_SUBPARTITION_ERROR 1482 | |
| #define ER_PARTITION_SUBPART_MIX_ERROR 1483 | | #define ER_PARTITION_SUBPART_MIX_ERROR 1483 | |
| #define ER_PARTITION_WRONG_NO_PART_ERROR 1484 | | #define ER_PARTITION_WRONG_NO_PART_ERROR 1484 | |
| #define ER_PARTITION_WRONG_NO_SUBPART_ERROR 1485 | | #define ER_PARTITION_WRONG_NO_SUBPART_ERROR 1485 | |
|
| #define ER_CONST_EXPR_IN_PARTITION_FUNC_ERROR 1486 | | #define ER_WRONG_EXPR_IN_PARTITION_FUNC_ERROR 1486 | |
| #define ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR 1487 | | #define ER_NO_CONST_EXPR_IN_RANGE_OR_LIST_ERROR 1487 | |
| #define ER_FIELD_NOT_FOUND_PART_ERROR 1488 | | #define ER_FIELD_NOT_FOUND_PART_ERROR 1488 | |
| #define ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR 1489 | | #define ER_LIST_OF_FIELDS_ONLY_IN_HASH_ERROR 1489 | |
| #define ER_INCONSISTENT_PARTITION_INFO_ERROR 1490 | | #define ER_INCONSISTENT_PARTITION_INFO_ERROR 1490 | |
| #define ER_PARTITION_FUNC_NOT_ALLOWED_ERROR 1491 | | #define ER_PARTITION_FUNC_NOT_ALLOWED_ERROR 1491 | |
| #define ER_PARTITIONS_MUST_BE_DEFINED_ERROR 1492 | | #define ER_PARTITIONS_MUST_BE_DEFINED_ERROR 1492 | |
| #define ER_RANGE_NOT_INCREASING_ERROR 1493 | | #define ER_RANGE_NOT_INCREASING_ERROR 1493 | |
| #define ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR 1494 | | #define ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR 1494 | |
| #define ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR 1495 | | #define ER_MULTIPLE_DEF_CONST_IN_LIST_PART_ERROR 1495 | |
| #define ER_PARTITION_ENTRY_ERROR 1496 | | #define ER_PARTITION_ENTRY_ERROR 1496 | |
| | | | |
End of changes. 1 change blocks. |
| 1 lines changed or deleted | | 1 lines changed or added | |
|