diff options
author | unknown <hf@deer.(none)> | 2005-11-01 11:43:34 +0400 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-11-01 11:43:34 +0400 |
commit | 389018280db5fab79ec76fb286071734b014fc0e (patch) | |
tree | dff52e555d83f299309f2c4bc961367d4bba22f7 /mysql-test | |
parent | fe3d5732f73207b947403d2a5a605996ca138bd2 (diff) | |
download | mariadb-git-389018280db5fab79ec76fb286071734b014fc0e.tar.gz |
gis.test fixed
mysql-test/r/gis.result:
test result fixed
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/gis.result | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result index 454b33c28be..049ba784dc9 100644 --- a/mysql-test/r/gis.result +++ b/mysql-test/r/gis.result @@ -665,6 +665,12 @@ 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 drop table t1; +select (asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))); +(asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))) +POINT(10 10) +select (asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))); +(asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))) +POINT(10 10) 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; insert into t1 values (null,null); @@ -688,9 +694,3 @@ alter table t1 add primary key pti(pt); ERROR 42000: BLOB/TEXT column 'pt' used in key specification without a key length alter table t1 add primary key pti(pt(20)); drop table t1; -select (asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))); -(asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))) -POINT(10 10) -select (asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))); -(asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))) -POINT(10 10) |