summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-03-15 17:35:31 +0400
committerunknown <holyfoot/hf@mysql.com/hfmain.(none)>2007-03-15 17:35:31 +0400
commitb42da2dd01b718766d8b0339f68399935de6dd9f (patch)
treebbe83be19144911b1a2e0f37aecc76593f486d93
parent3cc9160483b3c76166612b320f6de585b94efdec (diff)
downloadmariadb-git-b42da2dd01b718766d8b0339f68399935de6dd9f.tar.gz
merging
-rw-r--r--mysql-test/r/gis-rtree.result2
-rw-r--r--mysql-test/t/gis-rtree.test2
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/gis-rtree.result b/mysql-test/r/gis-rtree.result
index b92601e7b5c..a3955e8c008 100644
--- a/mysql-test/r/gis-rtree.result
+++ b/mysql-test/r/gis-rtree.result
@@ -879,7 +879,7 @@ c1 varchar(15) collate utf8_bin default NULL,
c3 varchar(10) collate utf8_bin default NULL,
spatial_point point NOT NULL,
PRIMARY KEY(id),
-SPATIAL KEY (spatial_point(32))
+SPATIAL KEY (spatial_point)
)ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
INSERT INTO t1 (c2, c1, c3, spatial_point) VALUES
('y', 's', 'j', GeomFromText('POINT(167 74)')),
diff --git a/mysql-test/t/gis-rtree.test b/mysql-test/t/gis-rtree.test
index 348b79be6c2..579ec65f149 100644
--- a/mysql-test/t/gis-rtree.test
+++ b/mysql-test/t/gis-rtree.test
@@ -251,7 +251,7 @@ CREATE TABLE t1 (id bigint(12) unsigned NOT NULL auto_increment,
c3 varchar(10) collate utf8_bin default NULL,
spatial_point point NOT NULL,
PRIMARY KEY(id),
- SPATIAL KEY (spatial_point(32))
+ SPATIAL KEY (spatial_point)
)ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
#
INSERT INTO t1 (c2, c1, c3, spatial_point) VALUES