summaryrefslogtreecommitdiff
path: root/mysql-test/r/udf.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-04-26 16:52:32 +0200
committerSergei Golubchik <serg@mariadb.org>2021-04-27 18:21:01 +0200
commit4f63b6cf53ce2d9eaf4a8006587ebf3c4d6ddd3c (patch)
tree53beca4046a7083dbb70360da2c03a8b6ece9fe6 /mysql-test/r/udf.result
parent883b723d7cc38c04f48395c1cf5512900c7c2705 (diff)
downloadmariadb-git-4f63b6cf53ce2d9eaf4a8006587ebf3c4d6ddd3c.tar.gz
Bug #31674599: THE UDF_INIT() FUNCTION CAUSE SERVER CRASH
Diffstat (limited to 'mysql-test/r/udf.result')
-rw-r--r--mysql-test/r/udf.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/udf.result b/mysql-test/r/udf.result
index 49768f6c514..367fc187ed2 100644
--- a/mysql-test/r/udf.result
+++ b/mysql-test/r/udf.result
@@ -492,4 +492,12 @@ select * from mysql.plugin WHERE name='unexisting_udf';
name dl
DROP FUNCTION unexisting_udf;
ERROR 42000: FUNCTION test.unexisting_udf does not exist
+#
+# Bug #31674599: THE UDF_INIT() FUNCTION CAUSE SERVER CRASH
+#
+call mtr.add_suppression('Invalid row in mysql.func table');
+insert mysql.func () values ();
+delete from mysql.func where name = '';
+#
# End of 10.2 tests
+#