diff options
author | Alexander Barkov <bar@mariadb.com> | 2019-07-10 11:55:16 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2019-07-10 11:55:16 +0400 |
commit | 265a7d1613d29e2bdd4c91a5a75971b331519dbe (patch) | |
tree | b053ea8bc389ff1bd7a6a8d9a750cdc71c0d8f43 /mysql-test/suite/compat/oracle/r/gis-debug.result | |
parent | e37d7a37151f1aa53e102d24af5d234c2ccfa392 (diff) | |
download | mariadb-git-265a7d1613d29e2bdd4c91a5a75971b331519dbe.tar.gz |
MDEV-20009 Add CAST(expr AS pluggable_type)
Diffstat (limited to 'mysql-test/suite/compat/oracle/r/gis-debug.result')
-rw-r--r-- | mysql-test/suite/compat/oracle/r/gis-debug.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/suite/compat/oracle/r/gis-debug.result b/mysql-test/suite/compat/oracle/r/gis-debug.result index cf686ba4d34..9ab74e6e579 100644 --- a/mysql-test/suite/compat/oracle/r/gis-debug.result +++ b/mysql-test/suite/compat/oracle/r/gis-debug.result @@ -12,5 +12,13 @@ SELECT WITHIN(POINT(1,1),POINT(1,1)); ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '(POINT(1,1),POINT(1,1))' at line 1 SET SESSION debug_dbug="-d,make_item_func_call_native_simulate_not_found"; # +# MDEV-20009 Add CAST(expr AS pluggable_type) +# +SET SESSION debug_dbug="+d,emulate_geometry_create_typecast_item"; +SELECT AsText(CAST('POINT(0 0)' AS GEOMETRY)); +AsText(CAST('POINT(0 0)' AS GEOMETRY)) +POINT(0 0) +SET SESSION debug_dbug="-d,emulate_geometry_create_typecast_item"; +# # End of 10.5 tests # |