mirror of
https://github.com/MariaDB/server.git
synced 2025-05-08 15:01:49 +03:00
Some test are still disabled as they provide different results, fail on different error or crash. Fixes also MDEV-14060 InnoDB: Foreign key constraint to geometry type does not work where test intentionally tried incorrect cases.
35 lines
756 B
Plaintext
35 lines
756 B
Plaintext
--source include/not_embedded.inc
|
|
--source include/have_innodb.inc
|
|
--source include/innodb_page_size_small.inc
|
|
|
|
# Test the redundant format
|
|
LET $file_per_table='off';
|
|
LET $file_format='Antelope';
|
|
LET $row_format=REDUNDANT;
|
|
|
|
--source include/innodb_gis_row_format_basic.inc
|
|
|
|
|
|
# Test the compressed format
|
|
LET $file_per_table='on';
|
|
LET $file_format='Barracuda';
|
|
LET $row_format=COMPRESSED;
|
|
|
|
--source include/innodb_gis_row_format_basic.inc
|
|
|
|
|
|
# Test the dynamic format
|
|
LET $file_per_table='on';
|
|
LET $file_format='Barracuda';
|
|
LET $row_format=DYNAMIC;
|
|
|
|
--source include/innodb_gis_row_format_basic.inc
|
|
|
|
# Test the compact format
|
|
LET $file_per_table='off';
|
|
LET $file_format='Antelope';
|
|
LET $row_format=COMPACT;
|
|
|
|
--source include/innodb_gis_row_format_basic.inc
|
|
|