mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Remove references to innodb_file_format.
innodb_file_format=Barracuda is the default in MariaDB 10.2. Do not set it, because the option will be removed in MariaDB 10.3. Also, do not set innodb_file_per_table=1 because it is the default. Note that MDEV-11828 should fix the test innodb.innodb-64k already in 10.1.
This commit is contained in:
@ -44,7 +44,6 @@ set innodb_strict_mode=off;
|
||||
#
|
||||
--echo "1. Error in assigning undo logs for truncate action."
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (
|
||||
i int, f float, c char,
|
||||
@ -71,7 +70,6 @@ drop table t;
|
||||
#
|
||||
--echo "2. Error while preparing for truncate."
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (
|
||||
i int, f float, c char,
|
||||
@ -98,7 +96,6 @@ drop table t;
|
||||
#
|
||||
--echo "3. Error while dropping/creating indexes"
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (
|
||||
i int, f float, c char,
|
||||
@ -122,7 +119,6 @@ drop table t;
|
||||
#
|
||||
#
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (
|
||||
i int, f float, c char,
|
||||
@ -146,7 +142,6 @@ drop table t;
|
||||
#
|
||||
#
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create temporary table t (
|
||||
i int, f float, c char,
|
||||
@ -174,7 +169,6 @@ drop table t;
|
||||
#
|
||||
--echo "4. Error while completing truncate of table involving FTS."
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (i int, f float, c char(100),
|
||||
primary key pk(i), index fk(f), fulltext index ck(c))
|
||||
@ -203,7 +197,6 @@ drop table t;
|
||||
#
|
||||
--echo "5. Error while updating sys-tables."
|
||||
eval set global innodb_file_per_table = $wl6501_file_per_table;
|
||||
eval set global innodb_file_format = $wl6501_file_format;
|
||||
--disable_warnings
|
||||
eval create $wl6501_temp table t (i int, f float, c char(100),
|
||||
primary key pk(i), index fk(f), fulltext index ck(c))
|
||||
@ -230,5 +223,4 @@ drop table t;
|
||||
#
|
||||
# remove test-bed
|
||||
#
|
||||
eval set global innodb_file_format = $format;
|
||||
eval set global innodb_file_per_table = $per_table;
|
||||
|
Reference in New Issue
Block a user