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

MDEV-6720 - enable connection log in mysqltest by default

This commit is contained in:
Sergey Vojtovich
2016-03-25 20:51:22 +04:00
parent 5052e2479e
commit 282497dd6d
1559 changed files with 38534 additions and 9891 deletions

View File

@ -34,31 +34,32 @@ SELECT @@warning_count;
0
0 Expected
'#------------------FN_DYNVARS_162_03---------------------------#'
** Connecting con_int1 using root **
** Connection con_int1 **
connect con_int1,localhost,root,,;
connection con_int1;
SELECT @@SESSION.sql_notes;
@@SESSION.sql_notes
1
1 / TRUE Expected
SET SESSION sql_notes = FALSE;
** Connecting con_int2 using root **
** Connection con_int2 **
connect con_int2,localhost,root,,;
connection con_int2;
SELECT @@SESSION.sql_notes;
@@SESSION.sql_notes
1
1 / TRUE Expected
SET SESSION sql_notes = TRUE;
** Connection con_int2 **
connection con_int2;
SELECT @@SESSION.sql_notes;
@@SESSION.sql_notes
1
1 / TRUE Expected
** Connection con_int1 **
connection con_int1;
SELECT @@SESSION.sql_notes;
@@SESSION.sql_notes
0
0 / FALSE Expected
** Connection default **
Disconnecting Connections con_int1, con_int2
connection default;
disconnect con_int1;
disconnect con_int2;
SET SESSION sql_notes = @default_sql_notes;
DROP TABLE IF EXISTS t1;