summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl_ndb/r
diff options
context:
space:
mode:
authorMats Kindahl <mats@mysql.com>2008-09-03 22:52:54 +0200
committerMats Kindahl <mats@mysql.com>2008-09-03 22:52:54 +0200
commitdbbb48c3c7295539a3fc1a71e21f5649ee02637b (patch)
tree56bdcd59981cfbdc7c2e26d831c3e19be19a6133 /mysql-test/suite/rpl_ndb/r
parent02a435404434a69f23e02d199e45a724729d9751 (diff)
downloadmariadb-git-dbbb48c3c7295539a3fc1a71e21f5649ee02637b.tar.gz
BUG#32709: Assertion failed: trx_data->empty(), file log.cc
Incremental fixes: updating a comment and fixing a result file. sql/sql_class.h: Changing comment.
Diffstat (limited to 'mysql-test/suite/rpl_ndb/r')
-rw-r--r--mysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result b/mysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result
index c2cbb6885f2..2538358b4d3 100644
--- a/mysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result
+++ b/mysql-test/suite/rpl_ndb/r/rpl_row_basic_7ndb.result
@@ -520,3 +520,10 @@ INSERT INTO t7 VALUES (1, "", 1);
INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2);
Comparing tables master:test.t7 and slave:test.t7
drop table t1, t2, t3, t4, t5, t6, t7;
+CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE='NDB' ;
+INSERT INTO t1 VALUES (1), (2), (3);
+UPDATE t1 SET a = 10;
+ERROR 23000: Duplicate entry '10' for key 'PRIMARY'
+INSERT INTO t1 VALUES (4);
+Comparing tables master:test.t1 and slave:test.t1
+drop table t1;