mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-32104 remove deprecated features
In particular: * @@debug deprecated since 5.5.37 * sr_YU locale deprecated since 10.0.11 * "engine_condition_pushdown" in the @@optimizer_switch deprecated since 10.1.1 * @@date_format, @@datetime_format, @@time_format, @@max_tmp_tables deprecated since 10.1.2 * @@wsrep_causal_reads deprecated since 10.1.3 * "parser" in mroonga table comment deprecated since 10.2.11
This commit is contained in:
@ -9,7 +9,7 @@ flush privileges;
|
||||
|
||||
# Print critical setup
|
||||
|
||||
#select @@global.debug;
|
||||
#select @@global.debug_dbug;
|
||||
#select @@global.max_connect_errors;
|
||||
#select @@global.max_user_connections;
|
||||
#select @@global.max_connections;
|
||||
|
@ -28,7 +28,7 @@ declare msg_detail varchar(512);
|
||||
declare cmd_1 varchar(512);
|
||||
declare cmd_2 varchar(512);
|
||||
declare done integer default 0;
|
||||
declare debug integer default 0;
|
||||
declare dbg integer default 0;
|
||||
declare pfs_cursor CURSOR FOR
|
||||
select table_name from information_schema.tables
|
||||
where table_schema= 'performance_schema'
|
||||
@ -106,7 +106,7 @@ set count_expected = save_count_expected - count_global_expected;
|
||||
end if;
|
||||
select concat("Checking table ", pfs_table_name, " ...") as status;
|
||||
select concat(cmd_1, pfs_table_name, cmd_2) into @cmd;
|
||||
if debug = 1
|
||||
if dbg = 1
|
||||
then
|
||||
select @cmd;
|
||||
end if;
|
||||
|
@ -55,7 +55,7 @@ begin
|
||||
declare cmd_1 varchar(512);
|
||||
declare cmd_2 varchar(512);
|
||||
declare done integer default 0;
|
||||
declare debug integer default 0;
|
||||
declare dbg integer default 0;
|
||||
|
||||
declare pfs_cursor CURSOR FOR
|
||||
select table_name from information_schema.tables
|
||||
@ -146,7 +146,7 @@ begin
|
||||
|
||||
select concat("Checking table ", pfs_table_name, " ...") as status;
|
||||
select concat(cmd_1, pfs_table_name, cmd_2) into @cmd;
|
||||
if debug = 1
|
||||
if dbg = 1
|
||||
then
|
||||
select @cmd;
|
||||
end if;
|
||||
|
Reference in New Issue
Block a user