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-rtree.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-rtree.result')
-rw-r--r-- | mysql-test/r/gis-rtree.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/gis-rtree.result b/mysql-test/r/gis-rtree.result index b76d02ef1d7..9373237f1d6 100644 --- a/mysql-test/r/gis-rtree.result +++ b/mysql-test/r/gis-rtree.result @@ -301,7 +301,7 @@ count(*) EXPLAIN SELECT fid, AsText(g) FROM t2 WHERE Within(g, GeomFromText('Polygon((40 40,60 40,60 60,40 60,40 40))')); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t2 range g g 34 NULL 1 Using where +1 SIMPLE t2 range g g 34 NULL 4 Using where SELECT fid, AsText(g) FROM t2 WHERE Within(g, GeomFromText('Polygon((40 40,60 40,60 60,40 60,40 40))')); fid AsText(g) |