Added --skip-bdb as a compatibility option for old config files
mysql-test/mysql-test-run.pl: Added suppression mysql-test/t/upgrade.test: Added missing path
This commit is contained in:
parent
b4a21b52fd
commit
7027c7facc
@ -4228,6 +4228,7 @@ sub extract_warning_lines ($) {
|
||||
qr/slave SQL thread aborted/,
|
||||
qr/unknown option '--loose[-_]/,
|
||||
qr/unknown variable 'loose[-_]/,
|
||||
or/Invalid .*old.* table or database name/,
|
||||
qr/Now setting lower_case_table_names to [02]/,
|
||||
qr/Setting lower_case_table_names=2/,
|
||||
qr/You have forced lower_case_table_names to 0/,
|
||||
|
@ -172,9 +172,9 @@ USE `#mysql50#../blablabla`;
|
||||
#
|
||||
# Test of Bug #56441: mysql_upgrade 5.0->5.1 fails for tables with long names
|
||||
#
|
||||
copy_file std_data/long_table_name.MYI $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.MYI;
|
||||
copy_file std_data/long_table_name.MYD $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.MYD;
|
||||
copy_file std_data/long_table_name.frm $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.frm;
|
||||
copy_file $MYSQL_TEST_DIR/std_data/long_table_name.MYI $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.MYI;
|
||||
copy_file $MYSQL_TEST_DIR/std_data/long_table_name.MYD $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.MYD;
|
||||
copy_file $MYSQL_TEST_DIR/std_data/long_table_name.frm $MYSQLD_DATADIR/test/ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com.frm;
|
||||
show full tables;
|
||||
rename table `#mysql50#ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com` to `ltoriaeinnovacionendesarrolloempres?9120761097220077376?cio_com`;
|
||||
show full tables;
|
||||
|
@ -5958,6 +5958,7 @@ enum options_mysqld
|
||||
#if defined(ENABLED_DEBUG_SYNC)
|
||||
OPT_DEBUG_SYNC_TIMEOUT,
|
||||
#endif /* defined(ENABLED_DEBUG_SYNC) */
|
||||
OPT_DEPRECATED_OPTION,
|
||||
OPT_SLAVE_EXEC_MODE,
|
||||
OPT_DEADLOCK_SEARCH_DEPTH_SHORT,
|
||||
OPT_DEADLOCK_SEARCH_DEPTH_LONG,
|
||||
@ -6737,6 +6738,9 @@ thread is in the relay logs.",
|
||||
"Show user and password in SHOW SLAVE HOSTS on this master.",
|
||||
&opt_show_slave_auth_info, &opt_show_slave_auth_info, 0,
|
||||
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||
{"skip-bdb", OPT_DEPRECATED_OPTION,
|
||||
"Deprecated option; Exist only for compatiblity with old my.cnf files",
|
||||
0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
|
||||
#ifndef DISABLE_GRANT_OPTIONS
|
||||
{"skip-grant-tables", OPT_SKIP_GRANT,
|
||||
"Start without grant tables. This gives all users FULL ACCESS to all tables.",
|
||||
@ -8409,6 +8413,10 @@ mysqld_get_one_option(int optid,
|
||||
case '0':
|
||||
WARN_DEPRECATED(NULL, VER_CELOSIA, "--log-long-format", "--log-short-format");
|
||||
break;
|
||||
case OPT_DEPRECATED_OPTION:
|
||||
sql_print_warning("'%s' is deprecated and exists only for compatiblity with old my.cnf files; Please remove this option from all your my.cnf files!",
|
||||
opt->name);
|
||||
break;
|
||||
case 'a':
|
||||
global_system_variables.sql_mode= fix_sql_mode(MODE_ANSI);
|
||||
global_system_variables.tx_isolation= ISO_SERIALIZABLE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user