You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/suite/sys_vars/r/new_mode.result
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,11 @@ SELECT @session_start_value;
7
7
@session_start_value
8
8
9
9
SET @@global.new_mode = "FIX_DISK_TMPTABLE_COSTS";
10
+
Warnings:
11
+
Warning 4200 The setting 'new_mode=FIX_DISK_TMPTABLE_COSTS' is ignored. It only exists for compatibility with old installations and will be removed in a future release
10
12
SELECT @@global.new_mode;
11
13
@@global.new_mode
12
-
FIX_DISK_TMPTABLE_COSTS
14
+
13
15
SELECT @@session.new_mode;
14
16
@@session.new_mode
15
17
@@ -22,17 +24,19 @@ SELECT @@session.new_mode;
22
24
23
25
SET @@session.new_mode = "FIX_DISK_TMPTABLE_COSTS,TEST_WARNING1";
24
26
Warnings:
27
+
Warning 4200 The setting 'new_mode=FIX_DISK_TMPTABLE_COSTS' is ignored. It only exists for compatibility with old installations and will be removed in a future release
25
28
Warning 4200 The setting 'new_mode=TEST_WARNING1' is ignored. It only exists for compatibility with old installations and will be removed in a future release
26
29
SET @@session.new_mode = "FIX_DISK_TMPTABLE_COSTS,TEST_WARNING1,TEST_WARNING2";
27
30
Warnings:
31
+
Warning 4200 The setting 'new_mode=FIX_DISK_TMPTABLE_COSTS' is ignored. It only exists for compatibility with old installations and will be removed in a future release
28
32
Warning 4200 The setting 'new_mode=TEST_WARNING1' is ignored. It only exists for compatibility with old installations and will be removed in a future release
29
33
Warning 4200 The setting 'new_mode=TEST_WARNING2' is ignored. It only exists for compatibility with old installations and will be removed in a future release
30
34
SET @@session.new_mode = "FIX_DISK_TMPTABLE_COSTS,TEST_WARNING1,TEST_WARNING2,TEST_WARNING3";
31
35
ERROR 42000: Variable 'new_mode' can't be set to the value of 'TEST_WARNING3'
32
36
SET @@session.new_mode = "ALL";
33
37
select @@session.new_mode;
34
38
@@session.new_mode
35
-
FIX_DISK_TMPTABLE_COSTS
39
+
36
40
SET @@global.new_mode = NULL;
37
41
ERROR 42000: Variable 'new_mode' can't be set to the value of 'NULL'
0 commit comments