diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-03-16 10:10:11 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-03-16 10:10:33 +0200 |
commit | c7daabdb0579531a22c24697f9efbe2ea2759435 (patch) | |
tree | 70a2f337ceeb00eff3b09e99d92b56422600592d /mysql-test | |
parent | 5fe87ac413cdc27ef09ea130a0bc4feea410cba0 (diff) | |
download | mariadb-git-c7daabdb0579531a22c24697f9efbe2ea2759435.tar.gz |
MDEV-13134/MDEV-21855: Add a test case
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/suite/sys_vars/r/alter_algorithm_basic.result | 89 | ||||
-rw-r--r-- | mysql-test/suite/sys_vars/t/alter_algorithm_basic.test | 58 |
2 files changed, 147 insertions, 0 deletions
diff --git a/mysql-test/suite/sys_vars/r/alter_algorithm_basic.result b/mysql-test/suite/sys_vars/r/alter_algorithm_basic.result new file mode 100644 index 00000000000..39cfad4d35c --- /dev/null +++ b/mysql-test/suite/sys_vars/r/alter_algorithm_basic.result @@ -0,0 +1,89 @@ +SET @start_global_value = @@global.alter_algorithm; +SET GLOBAL alter_algorithm=1.1; +ERROR 42000: Incorrect argument type to variable 'alter_algorithm' +SET GLOBAL alter_algorithm=-1; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of '-1' +SET GLOBAL alter_algorithm=weird; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of 'weird' +SET GLOBAL alter_algorithm=4; +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +INSTANT +SET GLOBAL alter_algorithm=3; +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +NOCOPY +SET GLOBAL alter_algorithm=0; +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +DEFAULT +SET GLOBAL alter_algorithm=1; +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +COPY +SET GLOBAL alter_algorithm=2; +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +INPLACE +SET GLOBAL alter_algorithm=5; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of '5' +SELECT @@global.alter_algorithm; +@@global.alter_algorithm +INPLACE +SET GLOBAL alter_algorithm=NOCOPY; +SET alter_algorithm=1.1; +ERROR 42000: Incorrect argument type to variable 'alter_algorithm' +SET alter_algorithm=-1; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of '-1' +SET alter_algorithm=weird; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of 'weird' +SET alter_algorithm=4; +SELECT @@alter_algorithm; +@@alter_algorithm +INSTANT +SET alter_algorithm=3; +SELECT @@alter_algorithm; +@@alter_algorithm +NOCOPY +SET alter_algorithm=0; +SELECT @@alter_algorithm; +@@alter_algorithm +DEFAULT +SET alter_algorithm=1; +SELECT @@alter_algorithm; +@@alter_algorithm +COPY +SET alter_algorithm=2; +SELECT @@alter_algorithm; +@@alter_algorithm +INPLACE +SET alter_algorithm=5; +ERROR 42000: Variable 'alter_algorithm' can't be set to the value of '5' +SELECT @@alter_algorithm; +@@alter_algorithm +INPLACE +SET SESSION alter_algorithm=INSTANT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm INSTANT +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm NOCOPY +SET SESSION alter_algorithm='DEFAULT'; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm DEFAULT +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm NOCOPY +SET GLOBAL alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm NOCOPY +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +Variable_name Value +alter_algorithm DEFAULT +SET GLOBAL alter_algorithm = @start_global_value; diff --git a/mysql-test/suite/sys_vars/t/alter_algorithm_basic.test b/mysql-test/suite/sys_vars/t/alter_algorithm_basic.test new file mode 100644 index 00000000000..69a5320a98c --- /dev/null +++ b/mysql-test/suite/sys_vars/t/alter_algorithm_basic.test @@ -0,0 +1,58 @@ +SET @start_global_value = @@global.alter_algorithm; + +--error ER_WRONG_TYPE_FOR_VAR +SET GLOBAL alter_algorithm=1.1; +--error ER_WRONG_VALUE_FOR_VAR +SET GLOBAL alter_algorithm=-1; +--error ER_WRONG_VALUE_FOR_VAR +SET GLOBAL alter_algorithm=weird; +SET GLOBAL alter_algorithm=4; +SELECT @@global.alter_algorithm; +SET GLOBAL alter_algorithm=3; +SELECT @@global.alter_algorithm; +SET GLOBAL alter_algorithm=0; +SELECT @@global.alter_algorithm; +SET GLOBAL alter_algorithm=1; +SELECT @@global.alter_algorithm; +SET GLOBAL alter_algorithm=2; +SELECT @@global.alter_algorithm; +--error ER_WRONG_VALUE_FOR_VAR +SET GLOBAL alter_algorithm=5; +SELECT @@global.alter_algorithm; + +SET GLOBAL alter_algorithm=NOCOPY; + +--error ER_WRONG_TYPE_FOR_VAR +SET alter_algorithm=1.1; +--error ER_WRONG_VALUE_FOR_VAR +SET alter_algorithm=-1; +--error ER_WRONG_VALUE_FOR_VAR +SET alter_algorithm=weird; +SET alter_algorithm=4; +SELECT @@alter_algorithm; +SET alter_algorithm=3; +SELECT @@alter_algorithm; +SET alter_algorithm=0; +SELECT @@alter_algorithm; +SET alter_algorithm=1; +SELECT @@alter_algorithm; +SET alter_algorithm=2; +SELECT @@alter_algorithm; +--error ER_WRONG_VALUE_FOR_VAR +SET alter_algorithm=5; +SELECT @@alter_algorithm; + +SET SESSION alter_algorithm=INSTANT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +SET SESSION alter_algorithm='DEFAULT'; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +SET GLOBAL alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; +SET SESSION alter_algorithm=DEFAULT; +SHOW SESSION VARIABLES LIKE 'alter_algorithm'; + +SET GLOBAL alter_algorithm = @start_global_value; |