diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2017-05-02 16:24:42 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2017-05-02 16:24:42 +0400 |
commit | a60bdcba649d14bc0b0f5de23ae11dabe7aa8e7f (patch) | |
tree | 4d1c1df20c8e609bf0e003b5ef9863b187aa8653 /mysql-test/r/gis-rt-precise.result | |
parent | 3ea9d3e59eecadce877416218a7f7789e65ba69a (diff) | |
download | mariadb-git-a60bdcba649d14bc0b0f5de23ae11dabe7aa8e7f.tar.gz |
MDEV-12462 SPATIAL index fails to work with CONTAINS.
Flags are wrongly set for MBR_CONTAINS/MBR_WITHIN functions.
Diffstat (limited to 'mysql-test/r/gis-rt-precise.result')
-rw-r--r-- | mysql-test/r/gis-rt-precise.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/gis-rt-precise.result b/mysql-test/r/gis-rt-precise.result index 65583a0ce0d..d3308ed90ba 100644 --- a/mysql-test/r/gis-rt-precise.result +++ b/mysql-test/r/gis-rt-precise.result @@ -51,7 +51,7 @@ count(*) EXPLAIN SELECT fid, AsText(g) FROM t1 WHERE ST_Within(g, GeomFromText('Polygon((40 40,60 40,60 60,40 40))')); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range g g 34 NULL 1 Using where +1 SIMPLE t1 range g g 34 NULL 4 Using where SELECT fid, AsText(g) FROM t1 WHERE ST_Within(g, GeomFromText('Polygon((40 40,60 40,60 60,40 40))')); fid AsText(g) |