1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

remove dead VERS_EXPERIMENTAL code

changed to use DBUG keywords instead,
so that the code is compiled and tested

added tests.
This commit is contained in:
Sergei Golubchik
2018-01-10 20:09:06 +01:00
parent 376b0ea1da
commit 5d3bae242c
13 changed files with 80 additions and 129 deletions

View File

@ -0,0 +1,29 @@
--source include/have_debug.inc
create table t1 (a int);
show create table t1;
--error ER_VERS_TEMPORARY
create temporary table tt1 (a int) with system versioning;
set @old_dbug=@@global.debug_dbug;
set global debug_dbug='+d,sysvers_force';
create table t2 (a int);
show create table t2;
create temporary table tt2 (a int) with system versioning;
show create table tt2;
--connect con1, localhost, root
create table t3 (a int);
show create table t3;
create temporary table tt3 (a int) with system versioning;
show create table tt3;
--disconnect con1
--connection default
set global debug_dbug=@old_dbug;
drop table t1, t2, t3;