1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

debug: don't hide row_start/row_end columns for testing

This commit is contained in:
Sergei Golubchik
2018-01-11 14:52:26 +01:00
parent 5d3bae242c
commit 28bed45469
3 changed files with 24 additions and 3 deletions

View File

@@ -25,5 +25,11 @@ show create table tt3;
--disconnect con1
--connection default
set debug_dbug='+d,sysvers_show';
show create table t3;
create table t4 (a int);
show create table t4;
set global debug_dbug=@old_dbug;
drop table t1, t2, t3;
drop table t1, t2, t3, t4;