diff options
author | monty@mysql.com <> | 2005-01-06 16:59:29 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2005-01-06 16:59:29 +0200 |
commit | ef74d8d89880fe5c76971f5cc22a11184445f6d6 (patch) | |
tree | 52613241dc7c0cb3ac99bd8da61be5bf2aa09faa /mysql-test/r/delayed.result | |
parent | bda0a781841d340fe559432ed91707e66b73d484 (diff) | |
download | mariadb-git-ef74d8d89880fe5c76971f5cc22a11184445f6d6.tar.gz |
Fixed a bug in prepared statements error handling
After merge fixes
Diffstat (limited to 'mysql-test/r/delayed.result')
-rw-r--r-- | mysql-test/r/delayed.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/delayed.result b/mysql-test/r/delayed.result index ceb511a7891..e9766622cf6 100644 --- a/mysql-test/r/delayed.result +++ b/mysql-test/r/delayed.result @@ -22,6 +22,9 @@ insert delayed into t1 values (null,"c"); insert delayed into t1 values (3,"d"),(null,"e"); insert delayed into t1 values (3,"this will give an","error"); ERROR 21S01: Column count doesn't match value count at row 1 +show status like 'not_flushed_delayed_rows'; +Variable_name Value +Not_flushed_delayed_rows 0 select * from t1; a b 1 b |