mirror of
https://github.com/MariaDB/server.git
synced 2025-05-08 15:01:49 +03:00
39 lines
847 B
Plaintext
39 lines
847 B
Plaintext
#
|
|
# BUG#21340268 INNODB: BOGUS CHECK FOR MAXIMUM RECORD LENGTH WITH SPATIAL KEY
|
|
# BUG#21508582 UNDO LOG DOES NOT CONTAIN ENOUGH INFORMATION ON SPATIAL COLUMNS
|
|
#
|
|
|
|
--source include/have_innodb.inc
|
|
--source include/count_sessions.inc
|
|
|
|
connect (con1,localhost,root,,);
|
|
connection default;
|
|
|
|
let $row_format = DYNAMIC;
|
|
let $prefix_size = 767;
|
|
|
|
let $index = spatial_none;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
let $index = spatial_only;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
let $index = spatial_mixed;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
|
|
let $row_format = COMPACT;
|
|
let $prefix_size = 767;
|
|
|
|
let $index = spatial_none;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
let $index = spatial_only;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
let $index = spatial_mixed;
|
|
--source include/innodb_gis_undo.inc
|
|
|
|
disconnect con1;
|
|
--source include/wait_until_count_sessions.inc
|