summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis.test
diff options
context:
space:
mode:
authorunknown <holyfoot/hf@hfmain.(none)>2007-10-05 16:33:08 +0500
committerunknown <holyfoot/hf@hfmain.(none)>2007-10-05 16:33:08 +0500
commit071e55af0db16f3f8d2b703433e8ed8b0edcfa99 (patch)
tree1a120ed6b5d577899a2512b84968b4c10dabf9e6 /mysql-test/t/gis.test
parentc7aff98271c12c652c0a2c0951dfaf8ff3068487 (diff)
parent77d786b5a0cd303d30b9a22a044b916078551e6c (diff)
downloadmariadb-git-071e55af0db16f3f8d2b703433e8ed8b0edcfa99.tar.gz
Merge mysql.com:/home/hf/work/30286/my41-30286
into mysql.com:/home/hf/work/30286/my50-30286 mysql-test/t/gis.test: Auto merged sql/gstream.cc: Auto merged mysql-test/r/gis.result: SCCS merged
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 79743a0b8f4..730f046dd27 100644
--- a/mysql-test/t/gis.test
+++ b/mysql-test/t/gis.test
@@ -431,6 +431,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
#