mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
MDEV-6720 - enable connection log in mysqltest by default
This commit is contained in:
@@ -1,16 +1,17 @@
|
||||
'#--------------------FN_DYNVARS_097_01-------------------------#'
|
||||
SET @start_value = @@global.myisam_stats_method;
|
||||
SET @@global.myisam_stats_method = nulls_equal;
|
||||
'connect (con1,localhost,root,,,,)'
|
||||
'connection con1'
|
||||
connect con1,localhost,root,,,,;
|
||||
connection con1;
|
||||
SELECT @@global.myisam_stats_method;
|
||||
@@global.myisam_stats_method
|
||||
NULLS_EQUAL
|
||||
SELECT @@session.myisam_stats_method;
|
||||
@@session.myisam_stats_method
|
||||
NULLS_EQUAL
|
||||
disconnect con1;
|
||||
'#--------------------FN_DYNVARS_097_02-------------------------#'
|
||||
'connection default'
|
||||
connection default;
|
||||
DROP TABLE IF EXISTS t1;
|
||||
CREATE TABLE t1 (a INT, KEY (a));
|
||||
INSERT INTO t1 VALUES (0),(1),(2),(3),(4);
|
||||
|
||||
Reference in New Issue
Block a user