diff options
author | unknown <hf@deer.(none)> | 2005-09-21 14:35:01 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2005-09-21 14:35:01 +0500 |
commit | 8fdef257ae94bfc0f82a1444aac1bd3e1a254c77 (patch) | |
tree | c65a5d5825d1a983b4726c069c6629a7381e3919 /mysql-test/r/gis.result | |
parent | b51879f1695e9a98bfb898b7688bf7c28932ad8c (diff) | |
download | mariadb-git-8fdef257ae94bfc0f82a1444aac1bd3e1a254c77.tar.gz |
Fix for bug #12839 (Endian support is absurd)
mysql-test/r/gis.result:
test result fixed
mysql-test/t/gis.test:
test case added
sql/field.cc:
::construct calls added
sql/item_geofunc.cc:
::construct calls added
sql/spatial.cc:
Geometry_*::init_from_wkb implemented
sql/spatial.h:
init_from_wkb methods declared
Diffstat (limited to 'mysql-test/r/gis.result')
-rw-r--r-- | mysql-test/r/gis.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result index c51b07f09d6..bf2f3e2bf03 100644 --- a/mysql-test/r/gis.result +++ b/mysql-test/r/gis.result @@ -655,3 +655,9 @@ t1 where object_id=85984; object_id geometrytype(geo) ISSIMPLE(GEO) ASTEXT(centroid(geo)) 85984 MULTIPOLYGON 0 POINT(-114.87787186923 36.33101763469) drop table t1; +select (asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))); +(asWKT(geomfromwkb((0x000000000140240000000000004024000000000000)))) +POINT(10 10) +select (asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))); +(asWKT(geomfromwkb((0x010100000000000000000024400000000000002440)))) +POINT(10 10) |