diff options
author | Andrei Elkin <aelkin@mysql.com> | 2009-02-24 16:35:45 +0200 |
---|---|---|
committer | Andrei Elkin <aelkin@mysql.com> | 2009-02-24 16:35:45 +0200 |
commit | a6ac350b3aacb277a15b8c2b03da4af049556bec (patch) | |
tree | 063e4efcbc216ba64a34b9b0001d8f39fb222367 /mysql-test/r/mysqlbinlog.result | |
parent | d091deaf89a09881a34ef67335d042354da75c11 (diff) | |
parent | f94eafb262c44fa865bf011e5b30b0ac7a799be4 (diff) | |
download | mariadb-git-a6ac350b3aacb277a15b8c2b03da4af049556bec.tar.gz |
merging from 5.0-bt rep to a local branch
Diffstat (limited to 'mysql-test/r/mysqlbinlog.result')
-rw-r--r-- | mysql-test/r/mysqlbinlog.result | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/r/mysqlbinlog.result b/mysql-test/r/mysqlbinlog.result index dbbf49e7920..6e5aa09fe92 100644 --- a/mysql-test/r/mysqlbinlog.result +++ b/mysql-test/r/mysqlbinlog.result @@ -353,7 +353,14 @@ flush logs; INSERT INTO t1 VALUES ('0123456789'); flush logs; DROP TABLE t1; -# Query thread_id=REMOVED exec_time=REMOVED error_code=REMOVED +We expect this value to be 1 +The bug being tested was that 'Query' lines were not preceded by '#' +If the line is in the table, it had to have been preceded by a '#' + +SELECT COUNT(*) AS `BUG#28293_expect_1` FROM patch WHERE a LIKE '%Query%'; +BUG#28293_expect_1 +1 +DROP TABLE patch; flush logs; create table t1(a int); insert into t1 values(connection_id()); |