summaryrefslogtreecommitdiff
path: root/mysql-test/suite/parts/r/rpl_partition.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/parts/r/rpl_partition.result')
-rw-r--r--mysql-test/suite/parts/r/rpl_partition.result6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/suite/parts/r/rpl_partition.result b/mysql-test/suite/parts/r/rpl_partition.result
index 00247f218e4..048ae77b367 100644
--- a/mysql-test/suite/parts/r/rpl_partition.result
+++ b/mysql-test/suite/parts/r/rpl_partition.result
@@ -96,13 +96,19 @@ DELETE FROM t3 WHERE id = del_count;
SET del_count = del_count - 2;
END WHILE;
END|
+begin;
CALL p1();
+commit;
SELECT count(*) as "Master regular" FROM t1;
Master regular 500
+begin;
CALL p2();
+commit;
SELECT count(*) as "Master bykey" FROM t2;
Master bykey 500
+begin;
CALL p3();
+commit;
SELECT count(*) as "Master byrange" FROM t3;
Master byrange 500
show create table t3;