diff options
author | unknown <tsmith@quadxeon.mysql.com> | 2007-03-07 23:49:46 +0100 |
---|---|---|
committer | unknown <tsmith@quadxeon.mysql.com> | 2007-03-07 23:49:46 +0100 |
commit | 5501a2915a8b8f3b4598dd187cbe1acdbbdf2fd2 (patch) | |
tree | 551f830952db821b3ed351d97ef082e61c67da19 /mysql-test/r/bdb_gis.result | |
parent | c4390d0519ecf686b560df1a2d59cc5371e00da9 (diff) | |
download | mariadb-git-5501a2915a8b8f3b4598dd187cbe1acdbbdf2fd2.tar.gz |
update test results for bdb_gis after merge of fix for b26038
Diffstat (limited to 'mysql-test/r/bdb_gis.result')
-rw-r--r-- | mysql-test/r/bdb_gis.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/bdb_gis.result b/mysql-test/r/bdb_gis.result index c0e1682e485..512d681ff32 100644 --- a/mysql-test/r/bdb_gis.result +++ b/mysql-test/r/bdb_gis.result @@ -446,7 +446,7 @@ ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert IGNORE into t1 values ('Garbage'); ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field drop table t1; -create table t1 (fl geometry); +create table t1 (fl geometry not null); insert into t1 values (1); ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into t1 values (1.11); @@ -454,5 +454,5 @@ ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into t1 values ("qwerty"); ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field insert into t1 values (pointfromtext('point(1,1)')); -ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field +ERROR 23000: Column 'fl' cannot be null drop table t1; |