diff options
author | kaa@polly.(none) <> | 2007-10-22 16:10:08 +0400 |
---|---|---|
committer | kaa@polly.(none) <> | 2007-10-22 16:10:08 +0400 |
commit | 53a9e7f478127bffcf995d92d250c70c2c4e2404 (patch) | |
tree | 977554b760b3dfaac163a7d3e2a383e639907522 /mysql-test/r/delete.result | |
parent | 349841118f6e209faedc09e59282d6751706a06f (diff) | |
download | mariadb-git-53a9e7f478127bffcf995d92d250c70c2c4e2404.tar.gz |
Fix for bug #31742: delete from ... order by function call that causes
an error, asserts server
In case of a fatal error during filesort in find_all_keys() the error
was returned without the necessary handler uninitialization.
Fixed by changing the code so that handler uninitialization is performed
before returning the error.
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r-- | mysql-test/r/delete.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result index 5084498c01c..eb93c69d960 100644 --- a/mysql-test/r/delete.result +++ b/mysql-test/r/delete.result @@ -271,3 +271,11 @@ a DROP TABLE t1, t2; DROP DATABASE db1; DROP DATABASE db2; +CREATE FUNCTION f1() RETURNS INT RETURN 1; +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (0); +DELETE FROM t1 ORDER BY (f1(10)) LIMIT 1; +ERROR 42000: Incorrect number of arguments for FUNCTION test.f1; expected 0, got 1 +DROP TABLE t1; +DROP FUNCTION f1; +End of 5.0 tests |