mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge main 5.1 into 5.1-build
This commit is contained in:
@ -3063,3 +3063,4 @@ sql/share/slovak
|
|||||||
sql/share/spanish
|
sql/share/spanish
|
||||||
sql/share/swedish
|
sql/share/swedish
|
||||||
sql/share/ukrainian
|
sql/share/ukrainian
|
||||||
|
libmysqld/examples/mysqltest.cc
|
||||||
|
@ -10,7 +10,7 @@ AC_CANONICAL_SYSTEM
|
|||||||
#
|
#
|
||||||
# When changing major version number please also check switch statement
|
# When changing major version number please also check switch statement
|
||||||
# in mysqlbinlog::check_master_version().
|
# in mysqlbinlog::check_master_version().
|
||||||
AM_INIT_AUTOMAKE(mysql, 5.1.38)
|
AM_INIT_AUTOMAKE(mysql, 5.1.39)
|
||||||
AM_CONFIG_HEADER([include/config.h:config.h.in])
|
AM_CONFIG_HEADER([include/config.h:config.h.in])
|
||||||
|
|
||||||
PROTOCOL_VERSION=10
|
PROTOCOL_VERSION=10
|
||||||
|
@ -494,6 +494,7 @@ sub collect_one_suite($)
|
|||||||
next if ($test->{'skip'} || !$test->{'innodb_test'});
|
next if ($test->{'skip'} || !$test->{'innodb_test'});
|
||||||
# Exceptions
|
# Exceptions
|
||||||
next if ($test->{'name'} eq 'main.innodb'); # Failed with wrong errno (fk)
|
next if ($test->{'name'} eq 'main.innodb'); # Failed with wrong errno (fk)
|
||||||
|
next if ($test->{'name'} eq 'main.index_merge_innodb'); # Explain diff
|
||||||
# innodb_file_per_table is rw with innodb_plugin
|
# innodb_file_per_table is rw with innodb_plugin
|
||||||
next if ($test->{'name'} eq 'sys_vars.innodb_file_per_table_basic');
|
next if ($test->{'name'} eq 'sys_vars.innodb_file_per_table_basic');
|
||||||
# innodb_lock_wait_timeout is rw with innodb_plugin
|
# innodb_lock_wait_timeout is rw with innodb_plugin
|
||||||
|
@ -618,7 +618,7 @@ enum btr_cur_method {
|
|||||||
hash_node, and might be necessary to
|
hash_node, and might be necessary to
|
||||||
update */
|
update */
|
||||||
BTR_CUR_BINARY, /*!< success using the binary search */
|
BTR_CUR_BINARY, /*!< success using the binary search */
|
||||||
BTR_CUR_INSERT_TO_IBUF, /*!< performed the intended insert to
|
BTR_CUR_INSERT_TO_IBUF /*!< performed the intended insert to
|
||||||
the insert buffer */
|
the insert buffer */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ typedef struct trx_named_savept_struct trx_named_savept_t;
|
|||||||
enum trx_rb_ctx {
|
enum trx_rb_ctx {
|
||||||
RB_NONE = 0, /*!< no rollback */
|
RB_NONE = 0, /*!< no rollback */
|
||||||
RB_NORMAL, /*!< normal rollback */
|
RB_NORMAL, /*!< normal rollback */
|
||||||
RB_RECOVERY, /*!< rolling back an incomplete transaction,
|
RB_RECOVERY /*!< rolling back an incomplete transaction,
|
||||||
in crash recovery */
|
in crash recovery */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user