summaryrefslogtreecommitdiff
path: root/mysql-test/suite/versioning/t/online.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/versioning/t/online.test')
-rw-r--r--mysql-test/suite/versioning/t/online.test7
1 files changed, 5 insertions, 2 deletions
diff --git a/mysql-test/suite/versioning/t/online.test b/mysql-test/suite/versioning/t/online.test
index 02fde474d55..f38af7c2706 100644
--- a/mysql-test/suite/versioning/t/online.test
+++ b/mysql-test/suite/versioning/t/online.test
@@ -107,7 +107,7 @@ insert into t values (1, 1);
select c.prtype from information_schema.innodb_sys_columns as c
join information_schema.innodb_sys_tables as t on c.table_id=t.table_id
- where t.name='test/t' and c.name='b';
+ where t.name='test2/t' and c.name='b';
set @@system_versioning_alter_history=keep;
@@ -125,7 +125,7 @@ set debug_dbug= default;
select c.prtype from information_schema.innodb_sys_columns as c
join information_schema.innodb_sys_tables as t on c.table_id=t.table_id
- where t.name='test/t' and c.name='b';
+ where t.name='test2/t' and c.name='b';
--replace_result $sys_datatype_expl SYS_DATATYPE
show create table t;
@@ -133,6 +133,7 @@ show create table t;
select count(*) from t for system_time all;
update t set b=11;
select count(*) from t for system_time all;
+drop table t;
--echo # Start of 10.4 tests
@@ -194,3 +195,5 @@ alter table t1 drop system versioning;
drop database test;
create database test;
+
+--source suite/versioning/common_finish.inc