diff options
author | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-11-18 00:32:06 +0400 |
---|---|---|
committer | holyfoot/hf@mysql.com/hfmain.(none) <> | 2007-11-18 00:32:06 +0400 |
commit | 05edaf49d4ca209cab609e309c201300be855f69 (patch) | |
tree | a96990e871c1cf4dfff9b9b751753954581cbe9c /mysql-test/t/windows.test | |
parent | 074a1dbd022f01469cf164b2eff5c3f50f9ff7b2 (diff) | |
download | mariadb-git-05edaf49d4ca209cab609e309c201300be855f69.tar.gz |
Bug #32211 Test 'windows' and 'windows_shm' failed for embedded server
failing 'INSTALL PLUGIN' statement doesn't work in embedded server
as we disable library loading there.
Fixed by enabling loading libraries (#define HAVE_DLOPEN), what also
makes UDF working in the embedded server.
Diffstat (limited to 'mysql-test/t/windows.test')
-rw-r--r-- | mysql-test/t/windows.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test index 0be81a95b9a..92ca0c3a3ec 100644 --- a/mysql-test/t/windows.test +++ b/mysql-test/t/windows.test @@ -36,6 +36,9 @@ EXPLAIN SELECT * FROM t1 WHERE b = (SELECT max(2)); --echo End of 5.0 tests. +--disable_warnings +drop procedure if exists proc_1; +--enable_warnings # # Bug #20665: All commands supported in Stored Procedures should work in # Prepared Statements |