summaryrefslogtreecommitdiff
path: root/mysql-test/r/ps.result
diff options
context:
space:
mode:
authorunknown <iggy/Administrator@amd64.>2006-11-17 17:34:55 -0500
committerunknown <iggy/Administrator@amd64.>2006-11-17 17:34:55 -0500
commit9eb09ef21900a35fa246002b466573d32064084b (patch)
tree36c31497a429ddcaa07c783f4c553c6da7ec9521 /mysql-test/r/ps.result
parente46dbc9b52537a168cf28793b0dae70a21ac9b90 (diff)
parent3ee0d5de3f6d09ec2b3ed28d1dfe26d18f700098 (diff)
downloadmariadb-git-9eb09ef21900a35fa246002b466573d32064084b.tar.gz
Merge amd64.:D:/src/mysql-5.1-maint
into amd64.:D:/src/mysql-5.1-maint_bug23983 mysql-test/r/ps.result: Auto merged mysql-test/t/ps.test: Auto merged
Diffstat (limited to 'mysql-test/r/ps.result')
-rw-r--r--mysql-test/r/ps.result14
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/r/ps.result b/mysql-test/r/ps.result
index 062d9428f43..5c97000b776 100644
--- a/mysql-test/r/ps.result
+++ b/mysql-test/r/ps.result
@@ -2090,14 +2090,6 @@ v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VI
deallocate prepare abc;
drop view v1;
drop table t1;
-create procedure proc_1() install plugin my_plug soname '/root/some_plugin.so';
-call proc_1();
-ERROR HY000: No paths allowed for shared library
-call proc_1();
-ERROR HY000: No paths allowed for shared library
-call proc_1();
-ERROR HY000: No paths allowed for shared library
-drop procedure proc_1;
create procedure proc_1() install plugin my_plug soname 'some_plugin.so';
call proc_1();
ERROR HY000: Can't open shared library
@@ -2112,12 +2104,6 @@ select func_1(), func_1(), func_1() from dual;
ERROR 42000: FUNCTION test.func_1 does not exist
drop function func_1;
ERROR 42000: FUNCTION test.func_1 does not exist
-prepare abc from "install plugin my_plug soname '/root/some_plugin.so'";
-execute abc;
-ERROR HY000: No paths allowed for shared library
-execute abc;
-ERROR HY000: No paths allowed for shared library
-deallocate prepare abc;
prepare abc from "install plugin my_plug soname 'some_plugin.so'";
deallocate prepare abc;
create procedure proc_1() uninstall plugin my_plug;