summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis.test
diff options
context:
space:
mode:
authorholyfoot/hf@hfmain.(none) <>2007-10-05 16:33:37 +0500
committerholyfoot/hf@hfmain.(none) <>2007-10-05 16:33:37 +0500
commit9f8842c265f0d1028ea8f2ac143e1a84d6dd711a (patch)
treea810f6b82bf03fae453bfee844b3e407ae7b14dd /mysql-test/t/gis.test
parentb768b1a50bbc8f301e51cd828e8bb985aa16e390 (diff)
parent1ab2fd9bb8d000d6c9b120dad72ae8999988d380 (diff)
downloadmariadb-git-9f8842c265f0d1028ea8f2ac143e1a84d6dd711a.tar.gz
Merge mysql.com:/home/hf/work/30286/my50-30286
into mysql.com:/home/hf/work/30286/my51-30286
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r--mysql-test/t/gis.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test
index d7182e36e3a..bd425e86892 100644
--- a/mysql-test/t/gis.test
+++ b/mysql-test/t/gis.test
@@ -432,6 +432,14 @@ INSERT INTO t1 VALUES (NULL);
SELECT * FROM t1;
DROP TABLE t1;
+#
+# Bug #30955 geomfromtext() crasher
+#
+CREATE TABLE `t1` ( `col9` set('a'), `col89` date);
+INSERT INTO `t1` VALUES ('','0000-00-00');
+select geomfromtext(col9,col89) as a from t1;
+DROP TABLE t1;
+
--echo End of 4.1 tests
#