mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge commit '43882e764d6867c6855b1ff057758a3f08b25c55' into 10.4
This commit is contained in:
@ -515,7 +515,7 @@ CREATE TABLE t1 (a TEXT COMPRESSED BYTE);
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE "t1" (
|
||||
"a" blob /*!100301 COMPRESSED*/ DEFAULT NULL
|
||||
"a" blob(65535) /*!100301 COMPRESSED*/ DEFAULT NULL
|
||||
)
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a TEXT COMPRESSED ASCII);
|
||||
@ -547,7 +547,7 @@ CREATE TABLE t1 (a TEXT COMPRESSED BYTE DEFAULT '');
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE "t1" (
|
||||
"a" blob /*!100301 COMPRESSED*/ DEFAULT ''
|
||||
"a" blob(65535) /*!100301 COMPRESSED*/ DEFAULT ''
|
||||
)
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 (a TEXT COMPRESSED BINARY DEFAULT '');
|
||||
@ -605,7 +605,7 @@ Warning 1287 '<data type> <character set clause> ... COMPRESSED...' is deprecate
|
||||
SHOW CREATE TABLE t1;
|
||||
Table Create Table
|
||||
t1 CREATE TABLE "t1" (
|
||||
"a" blob /*!100301 COMPRESSED*/ DEFAULT NULL
|
||||
"a" blob(65535) /*!100301 COMPRESSED*/ DEFAULT NULL
|
||||
)
|
||||
DROP TABLE t1;
|
||||
#
|
||||
|
Reference in New Issue
Block a user