1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

MDEV-19525 fix the test for embedded

followup for 58cd2a8ded
This commit is contained in:
Sergei Golubchik
2022-04-05 13:09:21 +02:00
parent daed558b2c
commit d7fd76456e

View File

@ -1,5 +1,7 @@
--source include/have_debug.inc --source include/have_debug.inc
--let $datadir=`select @@datadir`
create table t1 (a int); create table t1 (a int);
show create table t1; show create table t1;
@ -38,9 +40,10 @@ drop table t1, t2, t3, t4;
--echo # --echo #
create table t1 (x int) with system versioning; create table t1 (x int) with system versioning;
set debug_dbug='+d,error_vers_wrong_type'; set debug_dbug='+d,error_vers_wrong_type';
--replace_result $MYSQLTEST_VARDIR . master-data// '' '\\' '/' --replace_result $datadir ./
--error ER_NOT_FORM_FILE --error ER_NOT_FORM_FILE
show create table t1; show create table t1;
--replace_result $datadir ./
show warnings; show warnings;
drop table t1; drop table t1;
set global debug_dbug=@old_dbug; set global debug_dbug=@old_dbug;