mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fix running tests suite with non standard tmp dir.
Default is "var/tmp" mysql-test/r/myisam.result: Update result file mysql-test/t/myisam.test: If running test suite with a non standard tmp dir, the "show create table" will print "DATA DIRECTORY=" Use replace_result to mask it out Set tmpdir to var/log to get the printout of DATA DIRECTORY also when running with standard tmpdir
This commit is contained in:
@ -773,12 +773,12 @@ show create table t1;
|
|||||||
Table Create Table
|
Table Create Table
|
||||||
t1 CREATE TEMPORARY TABLE `t1` (
|
t1 CREATE TEMPORARY TABLE `t1` (
|
||||||
`a` int(11) default NULL
|
`a` int(11) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
|
||||||
show create table t1;
|
show create table t1;
|
||||||
Table Create Table
|
Table Create Table
|
||||||
t1 CREATE TEMPORARY TABLE `t1` (
|
t1 CREATE TEMPORARY TABLE `t1` (
|
||||||
`a` int(11) default NULL
|
`a` int(11) default NULL
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
|
||||||
create table t1 (a int) engine=myisam select 42 a;
|
create table t1 (a int) engine=myisam select 42 a;
|
||||||
select * from t1;
|
select * from t1;
|
||||||
a
|
a
|
||||||
|
@ -734,14 +734,20 @@ connect (session2,localhost,root,,);
|
|||||||
|
|
||||||
connection session1;
|
connection session1;
|
||||||
disable_query_log;
|
disable_query_log;
|
||||||
eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/tmp" select 9 a;
|
eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/log" select 9 a;
|
||||||
enable_query_log;
|
enable_query_log;
|
||||||
|
# If running test suite with a non standard tmp dir, the "show create table"
|
||||||
|
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
|
||||||
|
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
||||||
show create table t1;
|
show create table t1;
|
||||||
|
|
||||||
connection session2;
|
connection session2;
|
||||||
disable_query_log;
|
disable_query_log;
|
||||||
eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/tmp" select 99 a;
|
eval create temporary table t1 (a int) engine=myisam data directory="$MYSQL_TEST_DIR/var/log" select 99 a;
|
||||||
enable_query_log;
|
enable_query_log;
|
||||||
|
# If running test suite with a non standard tmp dir, the "show create table"
|
||||||
|
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
|
||||||
|
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
|
||||||
show create table t1;
|
show create table t1;
|
||||||
|
|
||||||
connection default;
|
connection default;
|
||||||
|
Reference in New Issue
Block a user