1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixes during review of new pushed code

Fixed new bug when running a SP without a default database
This commit is contained in:
monty@mishka.local
2005-08-20 11:00:00 +03:00
parent c726451abb
commit 1c1f26d5e2
10 changed files with 233 additions and 207 deletions

View File

@@ -397,6 +397,12 @@ connection n1;
--error 1370
call mysqltest_1.p1();
disconnect n1;
# Test also without a current database
connect (n2,localhost,mysqltest_1,,*NO-ONE*,$MASTER_MYPORT,$MASTER_MYSOCK);
connection n2;
--error 1370
call mysqltest_1.p1();
disconnect n2;
connection default;