mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge 10.4 into 10.5
This commit is contained in:
@ -795,4 +795,14 @@ ENGINE=InnoDB;
|
||||
INSERT INTO t VALUES (REPEAT('MariaDB Corporation Ab ',351),POINT(0,0));
|
||||
ALTER TABLE t FORCE;
|
||||
DROP TABLE t;
|
||||
#
|
||||
# MDEV-29856 heap-use-after-poison in row_merge_spatial_rows()
|
||||
# with PRIMARY KEY on column prefix
|
||||
#
|
||||
CREATE TABLE t (id INT, f TEXT, s POINT NOT NULL,
|
||||
PRIMARY KEY(id,f(1)), SPATIAL(s)) ENGINE=InnoDB;
|
||||
INSERT INTO t VALUES
|
||||
(1,REPEAT('x',8192),@p:=ST_GeomFromText('POINT(0 0)')),(2,'',@p);
|
||||
ALTER TABLE t FORCE;
|
||||
DROP TABLE t;
|
||||
# End of 10.3 tests
|
||||
|
Reference in New Issue
Block a user