1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

remove deprecated since 10.4

This commit is contained in:
Sergei Golubchik
2024-02-16 00:07:33 +01:00
parent 04f0504831
commit eeba940311
30 changed files with 111 additions and 1507 deletions

View File

@ -25,19 +25,13 @@ DROP TABLE t1;
--echo #
--echo # The following statements return deprecated syntax warnings
--echo # The following statements fail by the grammar since 11.5
--echo #
--enable_prepare_warnings
--error ER_PARSE_ERROR
--eval CREATE TABLE t1 (a $type DEFAULT '' COMPRESSED)
SHOW CREATE TABLE t1;
DROP TABLE t1;
--error ER_PARSE_ERROR
--eval CREATE TABLE t1 (a $type NULL COMPRESSED)
SHOW CREATE TABLE t1;
DROP TABLE t1;
--disable_prepare_warnings
--echo #
--echo # The following statements fail by the grammar,

View File

@ -50,20 +50,15 @@ DROP TABLE t1;
--echo #
--echo # The following statements return deprecated syntax warnings
--echo # The following statements fail by the grammar since 11.5
--echo #
--enable_prepare_warnings
--error ER_PARSE_ERROR
--eval CREATE TABLE t1 (a $type BINARY COMPRESSED)
SHOW CREATE TABLE t1;
DROP TABLE t1;
--error ER_PARSE_ERROR
--eval CREATE TABLE t1 (a $type ASCII COMPRESSED)
SHOW CREATE TABLE t1;
DROP TABLE t1;
--error ER_PARSE_ERROR
--eval CREATE TABLE t1 (a $type BYTE COMPRESSED)
SHOW CREATE TABLE t1;
DROP TABLE t1;
--disable_prepare_warnings