summaryrefslogtreecommitdiff
path: root/mysql-test/r/gis-rtree.result
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@deer.(none)>2006-09-29 17:58:36 +0500
committerunknown <holyfoot/hf@deer.(none)>2006-09-29 17:58:36 +0500
commite1a3b58ac10f90512ea6848649ac22b3af8a9d9d (patch)
treead278b74326a903b274d8c2ba762d5788d68d142 /mysql-test/r/gis-rtree.result
parent00f0f92015260699f1895e7c8986141dfc78bbdf (diff)
parent55aa43fe35473f428c2de4ea883267f8655c4433 (diff)
downloadmariadb-git-e1a3b58ac10f90512ea6848649ac22b3af8a9d9d.tar.gz
Merge mysql.com:/home/hf/work/21888/my50-21888
into mysql.com:/home/hf/work/21888/my51-21888 mysql-test/r/gis-rtree.result: Auto merged storage/myisam/mi_range.c: Auto merged
Diffstat (limited to 'mysql-test/r/gis-rtree.result')
-rw-r--r--mysql-test/r/gis-rtree.result11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/gis-rtree.result b/mysql-test/r/gis-rtree.result
index 92fcbfcdc9e..dbd6783fe76 100644
--- a/mysql-test/r/gis-rtree.result
+++ b/mysql-test/r/gis-rtree.result
@@ -862,3 +862,14 @@ CHECK TABLE t1 EXTENDED;
Table Op Msg_type Msg_text
test.t1 check status OK
DROP TABLE t1;
+CREATE TABLE t1 (foo GEOMETRY NOT NULL, SPATIAL INDEX(foo) );
+INSERT INTO t1 (foo) VALUES (PointFromWKB(POINT(1,1)));
+INSERT INTO t1 (foo) VALUES (PointFromWKB(POINT(1,0)));
+INSERT INTO t1 (foo) VALUES (PointFromWKB(POINT(0,1)));
+INSERT INTO t1 (foo) VALUES (PointFromWKB(POINT(0,0)));
+SELECT 1 FROM t1 WHERE foo != PointFromWKB(POINT(0,0));
+1
+1
+1
+1
+DROP TABLE t1;