diff options
author | Sergei Golubchik <sergii@pisem.net> | 2010-03-03 15:44:14 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2010-03-03 15:44:14 +0100 |
commit | 2ceaffc4672c62a772890da7761d11f13d3f5ee4 (patch) | |
tree | a88f704359d35209d76f0dbb52fe18f7b259e175 /mysql-test/r | |
parent | abb87914ecb4caa1becce4fc4d30c110a6b2c041 (diff) | |
download | mariadb-git-2ceaffc4672c62a772890da7761d11f13d3f5ee4.tar.gz |
mwl:98 - libservices
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/plugin.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/plugin.result b/mysql-test/r/plugin.result index 782d2a5a9a4..85fbd1353cc 100644 --- a/mysql-test/r/plugin.result +++ b/mysql-test/r/plugin.result @@ -12,6 +12,15 @@ CREATE TABLE t1(a int) ENGINE=EXAMPLE; SELECT * FROM t1; a DROP TABLE t1; +set global example_ulong_var=500; +set global example_enum_var= e1; +show status like 'example%'; +Variable_name Value +example_func_example enum_var is 0, ulong_var is 500, really +show variables like 'example%'; +Variable_name Value +example_enum_var e1 +example_ulong_var 500 UNINSTALL PLUGIN example; UNINSTALL PLUGIN EXAMPLE; ERROR 42000: PLUGIN EXAMPLE does not exist |