mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
9aa80fcf46
row_build_spatial_index_key(): Return early if the column is missing
in the table row tuple.
This is a regression that was introduced by
commit 0e5a4ac253
.
13 lines
505 B
Text
13 lines
505 B
Text
SET @saved_frequency = @@GLOBAL.innodb_purge_rseg_truncate_frequency;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency = 1;
|
|
CREATE TABLE t1 (g MULTIPOINT NOT NULL) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES ('');
|
|
connect purge_control,localhost,root;
|
|
START TRANSACTION WITH CONSISTENT SNAPSHOT;
|
|
connection default;
|
|
DELETE FROM t1;
|
|
ALTER TABLE t1 ADD SPATIAL INDEX (g);
|
|
disconnect purge_control;
|
|
InnoDB 0 transactions not purged
|
|
DROP TABLE t1;
|
|
SET GLOBAL innodb_purge_rseg_truncate_frequency = @saved_frequency;
|