From beb36f6c703319f3027948e9078360282b27e851 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 12 Jul 2013 16:31:01 +0300 Subject: [PATCH] now results is correct --- mysql-test/suite/innodb/r/innodb_bug14007649.result | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mysql-test/suite/innodb/r/innodb_bug14007649.result b/mysql-test/suite/innodb/r/innodb_bug14007649.result index 8338c7b2ba2..50de5868be4 100644 --- a/mysql-test/suite/innodb/r/innodb_bug14007649.result +++ b/mysql-test/suite/innodb/r/innodb_bug14007649.result @@ -39,17 +39,18 @@ update t1 set f2 = 6 where f1 = 1 and f2 is null; (a) Number of rows updated: select row_count(); row_count() -0 +1 (a) After the update statement is executed. select rowid, f1, f2 from t1; rowid f1 f2 1 1 10 2 1 NULL +3 1 6 commit; "The trx with consistent snapshot ended." select rowid, f1, f2 from t1; rowid f1 f2 1 1 10 2 1 4 -3 1 NULL +3 1 6 drop table t1;