diff options
author | holyfoot/hf@hfmain.(none) <> | 2007-10-05 16:33:37 +0500 |
---|---|---|
committer | holyfoot/hf@hfmain.(none) <> | 2007-10-05 16:33:37 +0500 |
commit | 9f8842c265f0d1028ea8f2ac143e1a84d6dd711a (patch) | |
tree | a810f6b82bf03fae453bfee844b3e407ae7b14dd /mysql-test/t/gis.test | |
parent | b768b1a50bbc8f301e51cd828e8bb985aa16e390 (diff) | |
parent | 1ab2fd9bb8d000d6c9b120dad72ae8999988d380 (diff) | |
download | mariadb-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.test | 8 |
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 # |