diff options
author | unknown <hf@deer.(none)> | 2005-08-05 20:26:55 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-08-05 20:26:55 +0500 |
commit | e13fa8ebbb095970b9a5a206001eeb06273567de (patch) | |
tree | a7e0c4cad758ee0cf1eca118276d2949cfcff0dc /mysql-test/t/gis.test | |
parent | 61fbf03610ed009260268e091fd01aa35672e4a3 (diff) | |
download | mariadb-git-e13fa8ebbb095970b9a5a206001eeb06273567de.tar.gz |
testcase added to fix for bug #12281 (Geometry & trigger crash)
mysql-test/r/gis.result:
test result fixed
mysql-test/t/gis.test:
testcase added
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r-- | mysql-test/t/gis.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test index 661616c0a6c..202042d0257 100644 --- a/mysql-test/t/gis.test +++ b/mysql-test/t/gis.test @@ -373,3 +373,13 @@ insert into t1 values (pointfromtext('point(1,1)')); drop table t1; # End of 4.1 tests + +# +# Bug #12281 (Geometry: crash in trigger) +# + +create table t1 (s1 geometry not null,s2 char(100)); +create trigger t1_bu before update on t1 for each row set new.s1 = null; +--error 1048 +insert into t1 values (null,null); +drop table t1; |