diff options
author | jimw@mysql.com <> | 2005-08-10 18:32:17 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-08-10 18:32:17 -0700 |
commit | 078e0c39020bc809a0e6bede47693ecb828493fb (patch) | |
tree | 8f7e0b27237aaa9d4b903707652d1074c68247f1 /mysql-test/r/metadata.result | |
parent | aa99bd61c02c6441c486cf58d0b564a24d91dcad (diff) | |
download | mariadb-git-078e0c39020bc809a0e6bede47693ecb828493fb.tar.gz |
Fix mysql_info() returning bad data in the results of a multi-statement
query that mixed statements that do and do not return info. (Bug #11688)
Diffstat (limited to 'mysql-test/r/metadata.result')
-rw-r--r-- | mysql-test/r/metadata.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/metadata.result b/mysql-test/r/metadata.result index 8f25e6b7f4a..6297f9cdcb5 100644 --- a/mysql-test/r/metadata.result +++ b/mysql-test/r/metadata.result @@ -85,3 +85,14 @@ def aaa 1 1 8 20 1 N 32769 0 63 1 1 drop table t1; +create table t1 (i int); +insert into t1 values (1),(2),(3); +select * from t1 where i = 2; +drop table t1;// +affected rows: 0 +affected rows: 3 +info: Records: 3 Duplicates: 0 Warnings: 0 +i +2 +affected rows: 1 +affected rows: 0 |