mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
32b7e60e42
The default storage engine is changed from MyISAM to InnoDB, in all builds except for the embedded server. In addition, the following system variables are changed: * innodb_file_per_table is enabled * innodb_strict_mode is enabled * innodb_file_format_name_update is changed to 'Barracuda' The test suite is changed so that tests that do not explicitly include the have_innodb.inc are run with --default-storage-engine=MyISAM. This is to ease the transition, so that most regression tests are run with the same engine as before. Some tests are disabled for the embedded server regression test, as the output of certain statements will be different that for the regular server (i.e SELECT @@default_storage_engine). This is to ease transition. mysql-test/mysql-test-run.pl: The regression test suite now adds a --default-storage-engine=MyISAM for all non-innodb tests. This behaviour can be controlled by the default-myisam switch in mysql-test-run mysql-test/t/bootstrap-master.opt: The bootstrap test can only be run without InnoDB as it starts several mysqld instances on the same datadir. This is possible with MyISAM, but not with InnoDB. storage/innobase/CMakeLists.txt: Build InnoDB per default storage/innobase/handler/ha_innodb.cc: Change default values for system variables Enable file_per_table Enable strict_mode Upgrade default file format to Barracuda
51 lines
1.6 KiB
Text
51 lines
1.6 KiB
Text
#
|
|
# 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 --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 query larger than 2*thd->net.max_packet
|
|
#
|
|
set @my_max_allowed_packet= @@max_allowed_packet;
|
|
set global max_allowed_packet=100*@@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;
|
|
|