diff options
author | Alexander Barkov <bar@mysql.com> | 2010-02-17 12:24:47 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mysql.com> | 2010-02-17 12:24:47 +0400 |
commit | 8780277b83f06c64922120f89c6e25b490c463cb (patch) | |
tree | 470d806f908f42a4eaf28d397f33be1e76b383a3 /mysql-test/include/commit.inc | |
parent | cf718fe9b77e97e641bddbb1438ed5d60c455e2e (diff) | |
parent | ab293e26c385d3dfc1b51923b50fd5f2ac158ee0 (diff) | |
download | mariadb-git-8780277b83f06c64922120f89c6e25b490c463cb.tar.gz |
Merging from mysql-next-mr
Diffstat (limited to 'mysql-test/include/commit.inc')
-rw-r--r-- | mysql-test/include/commit.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/include/commit.inc b/mysql-test/include/commit.inc index 4336d3be0ed..59d4f6be524 100644 --- a/mysql-test/include/commit.inc +++ b/mysql-test/include/commit.inc @@ -729,15 +729,15 @@ call p_verify_status_increment(2, 0, 4, 4); alter table t3 add column (b int); call p_verify_status_increment(2, 0, 2, 0); alter table t3 rename t4; -call p_verify_status_increment(1, 0, 1, 0); +call p_verify_status_increment(2, 0, 2, 0); rename table t4 to t3; -call p_verify_status_increment(1, 0, 1, 0); +call p_verify_status_increment(0, 0, 0, 0); truncate table t3; call p_verify_status_increment(2, 0, 2, 0); create view v1 as select * from t2; -call p_verify_status_increment(1, 0, 1, 0); +call p_verify_status_increment(2, 0, 2, 0); check table t1; -call p_verify_status_increment(3, 0, 3, 0); +call p_verify_status_increment(2, 0, 2, 0); --echo # Sic: after this bug is fixed, CHECK leaves no pending transaction commit; call p_verify_status_increment(0, 0, 0, 0); |