summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis.test
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2004-03-17 14:03:26 +0400
committerunknown <hf@deer.(none)>2004-03-17 14:03:26 +0400
commite308d66aad40f2e6c2fefe953136aff7a08d8664 (patch)
treed489c0442c004e4a42192bb5ede99687431ef40e /mysql-test/t/gis.test
parent26d0c4b1b4b78971e95b78117e2401c658ef1aa0 (diff)
downloadmariadb-git-e308d66aad40f2e6c2fefe953136aff7a08d8664.tar.gz
Fix for #233
test for IGNORE added mysql-test/r/gis.result: test result for IGNORE added mysql-test/t/gis.test: test for IGNORE added
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r--mysql-test/t/gis.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test
index 541cff731b8..ea460d5f7b0 100644
--- a/mysql-test/t/gis.test
+++ b/mysql-test/t/gis.test
@@ -165,6 +165,8 @@ create table t1 (a geometry not null);
insert into t1 values (GeomFromText('Point(1 2)'));
-- error 1105
insert into t1 values ('Garbage');
+-- error 1105
+insert IGNORE into t1 values ('Garbage');
alter table t1 add spatial index(a);
drop table t1;