summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/udf_skip_grants.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/udf_skip_grants.result')
-rw-r--r--mysql-test/main/udf_skip_grants.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/main/udf_skip_grants.result b/mysql-test/main/udf_skip_grants.result
new file mode 100644
index 00000000..8d7081eb
--- /dev/null
+++ b/mysql-test/main/udf_skip_grants.result
@@ -0,0 +1,5 @@
+CREATE FUNCTION a RETURNS STRING SONAME '';
+ERROR HY000: Can't initialize function 'a'; UDFs are unavailable with the --skip-grant-tables option
+DROP FUNCTION a;
+ERROR 42000: FUNCTION test.a does not exist
+End of 5.0 tests