mirror of
https://github.com/MariaDB/server.git
synced 2025-07-04 01:23:45 +03:00
NUMBERS If a system variable was declared as deprecated without mention of an alternative, the message would look funny, e.g. for @@delayed_insert_limit: Warning 1287 '@@delayed_insert_limit' is deprecated and will be removed in MySQL . The message was meant to display the version number, but it's not possible to give one when declaring a system variable. The fix does two things: 1) The definition of the message ER_WARN_DEPRECATED_SYNTAX_NO_REPLACEMENT is changed so that it does not display a version number. I.e. in English the message now reads: Warning 1287 The syntax '@@delayed_insert_limit' is deprecated and will be removed in a future version. 2) The message ER_WARN_DEPRECATED_SYNTAX_WITH_VER is discontinued in favor of ER_WARN_DEPRECATED_SYNTAX for system variables. This change was already done in versions 5.6 and above as part of wl#5265. This part is simply back-ported from the worklog.
77 lines
2.4 KiB
Plaintext
77 lines
2.4 KiB
Plaintext
** Setup **
|
|
|
|
SET @session_sql_big_selects = @@SESSION.sql_big_selects;
|
|
SET @session_max_join_size = @@SESSION.max_join_size;
|
|
SET @global_max_join_size = @@GLOBAL.max_join_size;
|
|
SET SQL_MAX_JOIN_SIZE=9;
|
|
Warnings:
|
|
Warning 1287 '@@sql_max_join_size' is deprecated and will be removed in a future release.
|
|
CREATE TEMPORARY TABLE t1(a varchar(20) not null, b varchar(20));
|
|
CREATE TEMPORARY TABLE t2(a varchar(20) null, b varchar(20));
|
|
INSERT INTO t1 VALUES('aa','bb');
|
|
INSERT INTO t1 VALUES('aa1','bb');
|
|
INSERT INTO t1 VALUES('aa2','bb');
|
|
INSERT INTO t1 VALUES('aa3','bb');
|
|
INSERT INTO t1 VALUES('aa4','bb');
|
|
INSERT INTO t2 VALUES('aa','bb');
|
|
INSERT INTO t2 VALUES('aa1','bb');
|
|
INSERT INTO t2 VALUES('aa2','bb');
|
|
INSERT INTO t2 VALUES('aa3','bb');
|
|
INSERT INTO t2 VALUES('aa4','bb');
|
|
'#--------------------FN_DYNVARS_154_01-------------------------#'
|
|
Expected error "Too big select"
|
|
SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
|
|
ERROR 42000: The SELECT would examine more than MAX_JOIN_SIZE rows; check your WHERE and use SET SQL_BIG_SELECTS=1 or SET MAX_JOIN_SIZE=# if the SELECT is okay
|
|
Expected error The SELECT would examine more than MAX_JOIN_SIZE rows.
|
|
'#--------------------FN_DYNVARS_154_02-------------------------#'
|
|
SET SESSION SQL_BIG_SELECTS = 1;
|
|
SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
|
|
a b a b
|
|
aa bb aa bb
|
|
aa1 bb aa1 bb
|
|
aa2 bb aa2 bb
|
|
aa3 bb aa3 bb
|
|
aa4 bb aa4 bb
|
|
This should work
|
|
SET SESSION SQL_BIG_SELECTS = 0;
|
|
DELETE FROM t2 WHERE a = 'aa4';
|
|
SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
|
|
a b a b
|
|
aa bb aa bb
|
|
aa1 bb aa1 bb
|
|
aa2 bb aa2 bb
|
|
aa3 bb aa3 bb
|
|
This should work
|
|
'#--------------------FN_DYNVARS_154_03-------------------------#'
|
|
** Connecting con_int1 using root **
|
|
** Connection con_int1 **
|
|
SELECT @@SESSION.sql_big_selects;
|
|
@@SESSION.sql_big_selects
|
|
1
|
|
1 Expected
|
|
SET SESSION sql_big_selects = 0;
|
|
** Connecting con_int2 using root **
|
|
** Connection con_int2 **
|
|
SELECT @@SESSION.sql_big_selects;
|
|
@@SESSION.sql_big_selects
|
|
1
|
|
1 Expected
|
|
SET SESSION sql_big_selects = 1;
|
|
** Connection con_int1 **
|
|
SELECT @@SESSION.sql_big_selects;
|
|
@@SESSION.sql_big_selects
|
|
0
|
|
0 Expected
|
|
** Connection con_int2 **
|
|
SELECT @@SESSION.sql_big_selects;
|
|
@@SESSION.sql_big_selects
|
|
1
|
|
1 Expected
|
|
** Connection default **
|
|
Disconnecting Connections con_int1, con_int2
|
|
SET @@SESSION.sql_big_selects = @session_sql_big_selects;
|
|
SET @@SESSION.max_join_size = @session_max_join_size;
|
|
SET @@GLOBAL.max_join_size = @global_max_join_size;
|
|
DROP TABLE t1;
|
|
DROP TABLE t2;
|