summaryrefslogtreecommitdiff
path: root/mysql-test/t/gis.test
diff options
context:
space:
mode:
authortnurnberg@salvation.intern.azundris.com <>2006-11-17 21:30:28 +0100
committertnurnberg@salvation.intern.azundris.com <>2006-11-17 21:30:28 +0100
commit655056d32f8679df3d8e3715de6aa993d07720b5 (patch)
tree87e89a1067e3e0be2c0013c3053be9d0e2848f02 /mysql-test/t/gis.test
parentcba50775f7201813f7d154d785c0c3e67223c327 (diff)
downloadmariadb-git-655056d32f8679df3d8e3715de6aa993d07720b5.tar.gz
Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR
Fix tests for new behaviour: an error is thrown if a NON DETERMINISTIC stored function (SF) is called during statement-based replication (SBR).
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r--mysql-test/t/gis.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test
index 7bba34be3ff..4e5a21c6789 100644
--- a/mysql-test/t/gis.test
+++ b/mysql-test/t/gis.test
@@ -393,7 +393,7 @@ drop table t1;
--disable_warnings
drop procedure if exists fn3;
--enable_warnings
-create function fn3 () returns point return GeomFromText("point(1 1)");
+create function fn3 () returns point deterministic return GeomFromText("point(1 1)");
show create function fn3;
select astext(fn3());
drop function fn3;