mirror of
https://github.com/MariaDB/server.git
synced 2025-11-06 13:10:12 +03:00
10 lines
723 B
Plaintext
10 lines
723 B
Plaintext
SET GLOBAL innodb_file_format = `Barracuda`;
|
|
SET GLOBAL innodb_file_per_table = ON;
|
|
set global innodb_compression_algorithm = 1;
|
|
create table innodb_normal(c1 bigint not null, b char(200)) engine=innodb page_compressed=1;
|
|
ERROR HY000: Can't create table `test`.`innodb_normal` (errno: 140 "Wrong create options")
|
|
create table innodb_compact(c1 bigint not null, b char(200)) engine=innodb row_format=compact page_compressed=1;
|
|
ERROR HY000: Can't create table `test`.`innodb_compact` (errno: 140 "Wrong create options")
|
|
create table innodb_dynamic(c1 bigint not null, b char(200)) engine=innodb row_format=dynamic page_compressed=1;
|
|
ERROR HY000: Can't create table `test`.`innodb_dynamic` (errno: 140 "Wrong create options")
|