bootstrap.test 1.56 KB
Newer Older
1 2 3 4 5 6 7 8
#
# test mysqld in bootstrap mode
#
--disable_warnings
drop table if exists t1;
--enable_warnings


msvensson@pilot.mysql.com's avatar
msvensson@pilot.mysql.com committed
9 10 11 12
# Add the datadir to the bootstrap command
let $MYSQLD_DATADIR= `select @@datadir`;
let $MYSQLD_BOOTSTRAP_CMD= $MYSQLD_BOOTSTRAP_CMD --datadir=$MYSQLD_DATADIR;

13 14 15
#
# Check that --bootstrap reads from stdin
#
16
--write_file $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql
17 18 19
use test;
CREATE TABLE t1(a int);
EOF
20
--exec $MYSQLD_BOOTSTRAP_CMD < $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql >> $MYSQLTEST_VARDIR/tmp/bootstrap.log 2>&1
21
drop table t1;
22
remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_test.sql;
23 24 25 26 27 28 29 30 31 32 33 34 35

#
# 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;
36
remove_file $MYSQLTEST_VARDIR/tmp/bootstrap_error.sql;
37 38 39 40 41 42 43 44 45 46 47 48

#
# 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
49
remove_file $MYSQLTEST_VARDIR/tmp/long_query.sql;
50 51 52 53

set global max_allowed_packet=@my_max_allowed_packet;
drop table t1;