1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-18650: Options deprecated in previous versions - old_alter_table

It was deprecated in 5.5 but it never issued a deprecation warning.
Make it issue a warning in 10.5.1.
This commit is contained in:
Vicențiu Ciorbaru
2020-01-21 14:21:53 +02:00
parent 899056cfab
commit fc5a4cfdf5
6 changed files with 35 additions and 1 deletions

View File

@@ -1,4 +1,6 @@
set old_alter_table=0;
Warnings:
Warning 1287 '@@old_alter_table' is deprecated and will be removed in a future release. Please use '@@alter_algorithm' instead
create table bug53592(a int) engine=innodb row_format=compact;
alter table bug53592 add column b text charset utf8;
alter table bug53592 add column c blob not null;
@@ -13,6 +15,8 @@ Table Op Msg_type Msg_text
test.bug53592 check status OK
drop table bug53592;
set old_alter_table=1;
Warnings:
Warning 1287 '@@old_alter_table' is deprecated and will be removed in a future release. Please use '@@alter_algorithm' instead
create table bug53592(a int) engine=innodb row_format=compact;
alter table bug53592 add column b text charset utf8;
alter table bug53592 add column c blob not null;