diff options
author | unknown <pekka@orca.ndb.mysql.com> | 2006-08-22 10:24:58 +0200 |
---|---|---|
committer | unknown <pekka@orca.ndb.mysql.com> | 2006-08-22 10:24:58 +0200 |
commit | 239c28be85668785c8f1bf98715f9a17fa8c3475 (patch) | |
tree | c71789bf4d137efec4098d271c97f68470d462de /mysql-test/t/gis.test | |
parent | e60c02f7fd800b897aca04bed11f2c39f4aeec41 (diff) | |
parent | 1b6858ea50c55bfff29d9796aed91166eda2b4ea (diff) | |
download | mariadb-git-239c28be85668785c8f1bf98715f9a17fa8c3475.tar.gz |
Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-5.1
into orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-ndb
sql/sql_show.cc:
Auto merged
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r-- | mysql-test/t/gis.test | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test index 4c6ff9b2fe7..7bba34be3ff 100644 --- a/mysql-test/t/gis.test +++ b/mysql-test/t/gis.test @@ -281,7 +281,7 @@ INSERT INTO t1 VALUES(GeomFromText('POINT(580848489 219587743)')); INSERT INTO t1 VALUES(GeomFromText('POINT(11247614 782797569)')); drop table t1; -create table t1 select POINT(1,3); +create table t1 select GeomFromWKB(POINT(1,3)); show create table t1; drop table t1; @@ -416,3 +416,9 @@ select * from t1; select asbinary(g) from t1; --disable_metadata drop table t1; + + +create table t1 select GeomFromText('point(1 1)'); +desc t1; +drop table t1; + |