mirror of
https://github.com/MariaDB/server.git
synced 2025-02-09 23:24:11 +01:00
![sachin](/assets/img/avatar_default.png)
with spatial index So the issue is since it is spatial index , at the time of searching index for key (Rows_log_event::find_row) we use wrong field image we use Field::itRAW while we should be using Field::itMBR
17 lines
550 B
Text
17 lines
550 B
Text
--source include/have_binlog_format_row.inc
|
|
--source include/master-slave.inc
|
|
|
|
CREATE TABLE t1 (g POINT NOT NULL, SPATIAL INDEX(g));
|
|
INSERT INTO t1 VALUES (ST_GEOMFROMTEXT('Point(1 1)'));
|
|
INSERT INTO t1 VALUES (ST_GEOMFROMTEXT('Point(2 1)'));
|
|
INSERT INTO t1 VALUES (ST_GEOMFROMTEXT('Point(1 2)'));
|
|
INSERT INTO t1 VALUES (ST_GEOMFROMTEXT('Point(2 2)'));
|
|
DELETE FROM t1 where MBREqual(g, ST_GEOMFROMTEXT('Point(1 2)'));
|
|
|
|
--sync_slave_with_master
|
|
select count(*) from t1;
|
|
|
|
--connection master
|
|
DELETE FROM t1;
|
|
drop table t1;
|
|
--source include/rpl_end.inc
|