mirror of
https://github.com/MariaDB/server.git
synced 2025-04-28 06:45:23 +03:00
This allows one to run the test suite even if any of the following options are changed: - character-set-server - collation-server - join-cache-level - log-basename - max-allowed-packet - optimizer-switch - query-cache-size and query-cache-type - skip-name-resolve - table-definition-cache - table-open-cache - Some innodb options etc Changes: - Don't print out the value of system variables as one can't depend on them to being constants. - Don't set global variables to 'default' as the default may not be the same as the test was started with if there was an additional option file. Instead save original value and reset it at end of test. - Test that depends on the latin1 character set should include default_charset.inc or set the character set to latin1 - Test that depends on the original optimizer switch, should include default_optimizer_switch.inc - Test that depends on the value of a specific system variable should set it in the test (like optimizer_use_condition_selectivity) - Split subselect3.test into subselect3.test and subselect3.inc to make it easier to set and reset system variables. - Added .opt files for test that required specfic options that could be changed by external configuration files. - Fixed result files in rockdsb & tokudb that had not been updated for a while.
128 lines
4.1 KiB
Plaintext
128 lines
4.1 KiB
Plaintext
#
|
|
# test mysqld in bootstrap mode
|
|
#
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
# Add the datadir to the bootstrap command
|
|
let $MYSQLD_DATADIR= `select @@datadir`;
|
|
let $MYSQLD_BOOTSTRAP_CMD= $MYSQLD_BOOTSTRAP_CMD --datadir=$MYSQLD_DATADIR --default-storage-engine=MyISAM --loose-skip-innodb;
|
|
#
|
|
# Check that --bootstrap reads from stdin
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql
|
|
use test;
|
|
CREATE TABLE t1(a int);
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
drop table t1;
|
|
remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql;
|
|
#
|
|
# Check that --bootstrap of file with SQL error returns error
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_error.sql
|
|
use test;
|
|
CREATE TABLE t1;
|
|
EOF
|
|
--error 1
|
|
--exec $MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/bootstrap_error.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
# Table t1 should not exists
|
|
--error 1051
|
|
drop table t1;
|
|
remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_error.sql;
|
|
|
|
#
|
|
# Bootstrap with a large thd->net.max_packet
|
|
#
|
|
set @my_max_allowed_packet= @@max_allowed_packet;
|
|
set @@global.max_allowed_packet= greatest(1073741824, @@max_allowed_packet);
|
|
set @max_allowed_packed=@@global.max_allowed_packet;
|
|
--disable_query_log
|
|
create table t1 select 2 as a, concat(repeat('MySQL', @@max_allowed_packet/10), ';') as b;
|
|
eval select * into outfile '$MYSQLTEST_VARDIR/tmp/long_query.sql' from t1;
|
|
--enable_query_log
|
|
--error 1
|
|
--exec $MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/long_query.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
remove_file $MYSQLTEST_VARDIR/tmp/long_query.sql;
|
|
|
|
set global max_allowed_packet=@my_max_allowed_packet;
|
|
drop table t1;
|
|
|
|
--echo End of 5.1 tests
|
|
|
|
--echo #
|
|
--echo # Bug #11766306: 59393: HAVE_INNODB=YES WHEN MYSQLD
|
|
--echo # STARTED WITH --SKIP-INNODB
|
|
--echo #
|
|
|
|
# need the --skip-innodb option present for the test to succeed
|
|
SELECT 'bug' as '' FROM INFORMATION_SCHEMA.ENGINES WHERE engine='innodb'
|
|
and SUPPORT='YES';
|
|
|
|
#
|
|
# MDEV-13063 Server crashes in intern_plugin_lock or assertion `plugin_ptr->ref_count == 1' fails in plugin_init
|
|
#
|
|
--error 1
|
|
--exec $MYSQLD_BOOTSTRAP_CMD --myisam_recover_options=NONE
|
|
|
|
#
|
|
# MDEV-19349 mysql_install_db: segfault at tmp_file_prefix check
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/1
|
|
use test;
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/1 >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/1
|
|
|
|
--echo End of 5.5 tests
|
|
|
|
--source include/not_windows_embedded.inc
|
|
--source include/have_example_plugin.inc
|
|
#
|
|
# Check that --bootstrap can install and uninstall plugins
|
|
#
|
|
let $PLUGIN_DIR=`select @@plugin_dir`;
|
|
--write_file $MYSQLTEST_VARDIR/tmp/install_plugin.sql
|
|
install soname 'ha_example';
|
|
uninstall plugin unusable;
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD --plugin-dir=$PLUGIN_DIR < $MYSQLTEST_VARDIR/tmp/install_plugin.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/install_plugin.sql
|
|
|
|
#
|
|
# Check that installed plugins are *not* automatically loaded in --bootstrap
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_plugins.sql
|
|
SET SQL_MODE="";
|
|
use test;
|
|
create table t1(a int) engine=example charset=latin1;
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD --plugin-dir=$PLUGIN_DIR < $MYSQLTEST_VARDIR/tmp/bootstrap_plugins.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_plugins.sql
|
|
flush tables;
|
|
show create table t1;
|
|
drop table t1;
|
|
--replace_result .dll .so
|
|
select * from mysql.plugin;
|
|
truncate table mysql.plugin;
|
|
|
|
|
|
#
|
|
# MDEV-9969 mysql_install_db error processing ignore_db_dirs.
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql
|
|
use test;
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD --ignore-db-dirs='some_dir' --ignore-db-dirs='some_dir' < $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql
|
|
|
|
#
|
|
# MDEV-13397 MariaDB upgrade fail when using default_time_zone
|
|
#
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql
|
|
use test;
|
|
EOF
|
|
--exec $MYSQLD_BOOTSTRAP_CMD --default-time-zone=Europe/Moscow < $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
|
|
--remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_9969.sql
|