mirror of
https://github.com/MariaDB/server.git
synced 2025-11-21 06:21:35 +03:00
- Fixed code that was not ready for a major version number > 9 - Fixed test cases that assumed max major version number could be 9 Updated version number for depricated options (will be removed in a later commit) VERSION: Version number 10.0.0 client/mysqlbinlog.cc: Added support for major version numbers > 9 cmake/mysql_version.cmake: Added support for version numbers that is 0 mysql-test/r/comments.result: Modified test to handle version number 100000 mysql-test/r/func_system.result: Modified test to handle version number 100000 mysql-test/r/log_state.result: Updated depricated error message mysql-test/r/sp.result: Modified test to handle version number 100000 mysql-test/r/subselect4.result: Updated depricated error message mysql-test/r/variables.result: Updated depricated error message mysql-test/suite/rpl/r/rpl_conditional_comments.result: Modified test to handle version number 100000 mysql-test/suite/rpl/r/rpl_loaddatalocal.result: Modified test to handle version number 100000 mysql-test/suite/rpl/t/rpl_conditional_comments.test: Modified test to handle version number 100000 mysql-test/suite/rpl/t/rpl_loaddatalocal.test: Modified test to handle version number 100000 mysql-test/suite/sys_vars/r/debug_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/engine_condition_pushdown_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/log_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/log_slow_queries_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/multi_range_count_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/rpl_recovery_rank_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/sql_big_selects_func.result: Updated depricated error message mysql-test/suite/sys_vars/r/sql_max_join_size_basic.result: Updated depricated error message mysql-test/suite/sys_vars/r/sql_max_join_size_func.result: Updated depricated error message mysql-test/t/comments.test: Modified test to handle version number 100000 mysql-test/t/file_contents.test: Modified test to handle version number 100000 mysql-test/t/func_system.test: Modified test to handle version number 100000 mysql-test/t/parser_not_embedded.test: Modified test to handle version number 100000 mysql-test/t/sp.test: Modified test to handle version number 100000 sql/mysqld.cc: Updated version number for depricated options (will be removed in a later commit) sql/slave.cc: Modified test to handle version number 100000 Better error messages sql/sql_lex.cc: Modified test to handle version number 100000 in comment syntax sql/sys_vars.cc: Updated version number for depricated options (will be removed in a later commit)
133 lines
5.3 KiB
Plaintext
133 lines
5.3 KiB
Plaintext
SET @start_global_value = @@global.rpl_recovery_rank;
|
|
SELECT @start_global_value;
|
|
@start_global_value
|
|
0
|
|
'#--------------------FN_DYNVARS_142_01-------------------------#'
|
|
SET @@global.rpl_recovery_rank = 500000;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SET @@global.rpl_recovery_rank = DEFAULT;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
'#--------------------FN_DYNVARS_142_02-------------------------#'
|
|
SET @@global.rpl_recovery_rank = 0;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
SET @@global.rpl_recovery_rank = 1024;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
1024
|
|
SET @@global.rpl_recovery_rank = 123456789;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
123456789
|
|
SET @@global.rpl_recovery_rank = 2147483648*2;
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
4294967295
|
|
SET @@global.rpl_recovery_rank = 2147483648*1024;
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
4294967295
|
|
SET @@global.rpl_recovery_rank = 2147483648*2147483648;
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
4294967295
|
|
'#--------------------FN_DYNVARS_142_03-------------------------#'
|
|
SET @@rpl_recovery_rank = 2;
|
|
ERROR HY000: Variable 'rpl_recovery_rank' is a GLOBAL variable and should be set with SET GLOBAL
|
|
SET @@session.rpl_recovery_rank = 3;
|
|
ERROR HY000: Variable 'rpl_recovery_rank' is a GLOBAL variable and should be set with SET GLOBAL
|
|
SET @@local.rpl_recovery_rank = 4;
|
|
ERROR HY000: Variable 'rpl_recovery_rank' is a GLOBAL variable and should be set with SET GLOBAL
|
|
'#------------------FN_DYNVARS_142_04-----------------------#'
|
|
SET @@global.rpl_recovery_rank = -1;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
Warning 1292 Truncated incorrect rpl_recovery_rank value: '-1'
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
SET @@global.rpl_recovery_rank = -2147483648;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
Warning 1292 Truncated incorrect rpl_recovery_rank value: '-2147483648'
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
SET @@global.rpl_recovery_rank = -2147483649;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
Warning 1292 Truncated incorrect rpl_recovery_rank value: '-2147483649'
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
SET @@global.rpl_recovery_rank = 65530.34;
|
|
ERROR 42000: Incorrect argument type to variable 'rpl_recovery_rank'
|
|
SET @@global.rpl_recovery_rank = 2147483649.56;
|
|
ERROR 42000: Incorrect argument type to variable 'rpl_recovery_rank'
|
|
SET @@global.rpl_recovery_rank = 1G;
|
|
ERROR 42000: Incorrect argument type to variable 'rpl_recovery_rank'
|
|
'#------------------FN_DYNVARS_142_05-----------------------#'
|
|
SET @@global.rpl_recovery_rank = 3000;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank = VARIABLE_VALUE
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='rpl_recovery_rank';
|
|
@@global.rpl_recovery_rank = VARIABLE_VALUE
|
|
1
|
|
'#------------------FN_DYNVARS_142_06-----------------------#'
|
|
SELECT count(VARIABLE_VALUE)
|
|
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
|
|
WHERE VARIABLE_NAME='rpl_recovery_rank';
|
|
count(VARIABLE_VALUE)
|
|
1
|
|
'#------------------FN_DYNVARS_142_07-----------------------#'
|
|
SET @@global.rpl_recovery_rank = TRUE;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
1
|
|
SET @@global.rpl_recovery_rank = FALSE;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|
|
'#---------------------FN_DYNVARS_001_08----------------------#'
|
|
SET @@global.rpl_recovery_rank = 512;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@rpl_recovery_rank = @@global.rpl_recovery_rank;
|
|
@@rpl_recovery_rank = @@global.rpl_recovery_rank
|
|
1
|
|
'#---------------------FN_DYNVARS_001_09----------------------#'
|
|
SET rpl_recovery_rank = 2048;
|
|
ERROR HY000: Variable 'rpl_recovery_rank' is a GLOBAL variable and should be set with SET GLOBAL
|
|
SELECT rpl_recovery_rank;
|
|
ERROR 42S22: Unknown column 'rpl_recovery_rank' in 'field list'
|
|
SELECT @@rpl_recovery_rank;
|
|
@@rpl_recovery_rank
|
|
512
|
|
SET global rpl_recovery_rank = 64;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SET @@global.rpl_recovery_rank = @start_global_value;
|
|
Warnings:
|
|
Warning 1287 The syntax '@@rpl_recovery_rank' is deprecated and will be removed in MariaDB 10.1.
|
|
SELECT @@global.rpl_recovery_rank;
|
|
@@global.rpl_recovery_rank
|
|
0
|