mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
debug: don't hide row_start/row_end columns for testing
This commit is contained in:
@ -35,5 +35,20 @@ tt3 CREATE TEMPORARY TABLE `tt3` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
disconnect con1;
|
||||
connection default;
|
||||
set debug_dbug='+d,sysvers_show';
|
||||
show create table t3;
|
||||
Table Create Table
|
||||
t3 CREATE TABLE `t3` (
|
||||
`a` int(11) DEFAULT NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 WITH SYSTEM VERSIONING
|
||||
create table t4 (a int);
|
||||
show create table t4;
|
||||
Table Create Table
|
||||
t4 CREATE TABLE `t4` (
|
||||
`a` int(11) DEFAULT NULL,
|
||||
`row_start` timestamp(6) GENERATED ALWAYS AS ROW START,
|
||||
`row_end` timestamp(6) GENERATED ALWAYS AS ROW END,
|
||||
PERIOD FOR SYSTEM_TIME (`row_start`, `row_end`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 WITH SYSTEM VERSIONING
|
||||
set global debug_dbug=@old_dbug;
|
||||
drop table t1, t2, t3;
|
||||
drop table t1, t2, t3, t4;
|
||||
|
Reference in New Issue
Block a user