diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2022-12-13 16:58:58 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2022-12-13 16:58:58 +0200 |
commit | a8a5c8a1b8ac566241d43a85de90c11f5d1568d9 (patch) | |
tree | f619f2a7ed54abbc9edd42b77f5b63caa6ec65ac /mysql-test/main/gis-json.test | |
parent | 04efe13501246e490932d4be7bca90e207e0b5e2 (diff) | |
parent | 1dc2f35598193fc52b79061c286b61f01c617374 (diff) | |
download | mariadb-git-a8a5c8a1b8ac566241d43a85de90c11f5d1568d9.tar.gz |
Merge 10.5 into 10.6
Diffstat (limited to 'mysql-test/main/gis-json.test')
-rw-r--r-- | mysql-test/main/gis-json.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/main/gis-json.test b/mysql-test/main/gis-json.test index 0e1b24a91b6..cda395acab5 100644 --- a/mysql-test/main/gis-json.test +++ b/mysql-test/main/gis-json.test @@ -26,6 +26,7 @@ SELECT st_astext(st_geomfromgeojson('{"type""point"}')); #enable after fix MDEV-27871 --disable_view_protocol SELECT st_astext(st_geomfromgeojson('{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [102.0, 0.5] } }')); +SELECT st_astext(st_geomfromgeojson('{ "geometry": { "type": "Point", "coordinates": [102.0, 0.5] }, "type": "Feature" }')); SELECT st_astext(st_geomfromgeojson('{ "type": "FeatureCollection", "features": [{ "type": "Feature", "geometry": { "type": "Point", "coordinates": [102.0, 0.5] }, "properties": { "prop0": "value0" } }]}')); |