diff options
Diffstat (limited to 'mysql-test/r/sp-innodb.result')
-rw-r--r-- | mysql-test/r/sp-innodb.result | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/r/sp-innodb.result b/mysql-test/r/sp-innodb.result index b5fe920c675..b3405705698 100644 --- a/mysql-test/r/sp-innodb.result +++ b/mysql-test/r/sp-innodb.result @@ -85,8 +85,6 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction SELECT f1() AS 'f1():'; f1(): No such table -Warnings: -Error 1146 Table 'test.no_such_table' doesn't exist # Provoke another deadlock, then call the function with # handler indirectly. This case fails without the patch @@ -96,8 +94,6 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction SELECT f2() AS 'f2():'; f2(): No such table -Warnings: -Error 1146 Table 'test.no_such_table' doesn't exist # Provoke yet another deadlock, but now from within a function, # then call the function with handler. This succeeds even @@ -109,8 +105,6 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction SELECT f1() AS 'f1():'; f1(): No such table -Warnings: -Error 1146 Table 'test.no_such_table' doesn't exist # Provoke yet another deadlock, but now from within a function, # calling another function, then call the function with handler. # This succeeds even without the patch because @@ -122,8 +116,6 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction SELECT f1() AS 'f1():'; f1(): No such table -Warnings: -Error 1146 Table 'test.no_such_table' doesn't exist # Disconnect, drop functions and table: DROP FUNCTION f4; |