summaryrefslogtreecommitdiff
path: root/mysql-test/r/plugin.result
diff options
context:
space:
mode:
authorgluh@eagle.(none) <>2007-11-14 17:30:16 +0400
committergluh@eagle.(none) <>2007-11-14 17:30:16 +0400
commit58336411c9d624f0e99cf95aa5db22ec70dd0c6c (patch)
tree4676d6947f9f56056b0b29957c90cba5cdad5eba /mysql-test/r/plugin.result
parent6223deb694946e5a2c3e46eaf4f2ce5624b5e78a (diff)
parent95e7cccfee7f1b1df3e455fb5e6bc10ef49c2a3a (diff)
downloadmariadb-git-58336411c9d624f0e99cf95aa5db22ec70dd0c6c.tar.gz
Merge mysql.com:/home/gluh/MySQL/Merge/5.1
into mysql.com:/home/gluh/MySQL/Merge/5.1-opt
Diffstat (limited to 'mysql-test/r/plugin.result')
-rw-r--r--mysql-test/r/plugin.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/plugin.result b/mysql-test/r/plugin.result
index 8628acecf55..e4af1535775 100644
--- a/mysql-test/r/plugin.result
+++ b/mysql-test/r/plugin.result
@@ -17,3 +17,13 @@ UNINSTALL PLUGIN EXAMPLE;
ERROR 42000: PLUGIN EXAMPLE does not exist
UNINSTALL PLUGIN non_exist;
ERROR 42000: PLUGIN non_exist does not exist
+#
+# Bug#32034: check_func_enum() does not check correct values but set it
+# to impossible int val
+#
+INSTALL PLUGIN example SONAME 'ha_example.so';
+SET GLOBAL example_enum_var= e1;
+SET GLOBAL example_enum_var= e2;
+SET GLOBAL example_enum_var= impossible;
+ERROR 42000: Variable 'enum_var' can't be set to the value of 'impossible'
+UNINSTALL PLUGIN example;