diff options
Diffstat (limited to 'mysql-test/t/sp_gis.test')
-rw-r--r-- | mysql-test/t/sp_gis.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/t/sp_gis.test b/mysql-test/t/sp_gis.test index f1d489e4cc5..51ed78b27d5 100644 --- a/mysql-test/t/sp_gis.test +++ b/mysql-test/t/sp_gis.test @@ -27,7 +27,11 @@ select x(); --error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select y(); select x(PointFromText("POINT(10 20)")), y(PointFromText("POINT(10 20)")); + +# Non deterministic warnings from db_load_routine +--disable_warnings select test.a(), test.x(), test.y(); +--enable_warnings drop function a; drop function x; |