diff options
author | Magne Mahre <magne.mahre@sun.com> | 2010-06-09 10:46:24 +0200 |
---|---|---|
committer | Magne Mahre <magne.mahre@sun.com> | 2010-06-09 10:46:24 +0200 |
commit | 75d7bb91a3013cc0fa99003c638f154930966b12 (patch) | |
tree | 3eb32f9cbea8c3f8921938ca87253e9abaa10296 /mysql-test/t/parser.test | |
parent | 8d4253418292112932d798f23707ee95acc13ce3 (diff) | |
download | mariadb-git-75d7bb91a3013cc0fa99003c638f154930966b12.tar.gz |
Post-commit fixes after the push for Bug#20837 et. al.
mysql-test/suite/innodb/r/innodb_information_schema.result:
The transaction is in REPEATABLE READ, since the
iso level was changed to SERIALIZABLE only for the
previous trx.
mysql-test/suite/innodb/t/innodb-semi-consistent.test:
'commit' was missing from the original patch
mysql-test/t/parser.test:
Moved the test for Bug#46527 to parser_not_embedded,
since "disconnect default" isn't allowed with
the embedded server.
mysql-test/t/parser_not_embedded.test:
Moved the test for Bug#46527 to parser_not_embedded,
since "disconnect default" isn't allowed with
the embedded server.
Diffstat (limited to 'mysql-test/t/parser.test')
-rw-r--r-- | mysql-test/t/parser.test | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/mysql-test/t/parser.test b/mysql-test/t/parser.test index 43d3abb0649..d477843b22b 100644 --- a/mysql-test/t/parser.test +++ b/mysql-test/t/parser.test @@ -733,78 +733,3 @@ DROP TABLE t1, t2, t3; --echo # End of 5.1 tests --echo # ---echo # Bug#46527 "COMMIT AND CHAIN RELEASE does not make sense" ---echo # ---error ER_PARSE_ERROR -COMMIT AND CHAIN RELEASE; - -COMMIT AND NO CHAIN RELEASE; -disconnect default; -connect(default, localhost, root,,); - -COMMIT RELEASE; -disconnect default; -connect(default, localhost, root,,); - ---error ER_PARSE_ERROR -COMMIT CHAIN RELEASE; - ---error ER_PARSE_ERROR -COMMIT NO CHAIN RELEASE; - ---error ER_PARSE_ERROR -COMMIT AND NO RELEASE; ---error ER_PARSE_ERROR -COMMIT AND RELEASE; - -COMMIT NO RELEASE; ---error ER_PARSE_ERROR -COMMIT CHAIN NO RELEASE; ---error ER_PARSE_ERROR -COMMIT NO CHAIN NO RELEASE; - ---error ER_PARSE_ERROR -COMMIT AND RELEASE CHAIN; - -COMMIT AND NO CHAIN NO RELEASE; - ---error ER_PARSE_ERROR -ROLLBACK AND CHAIN RELEASE; - -ROLLBACK AND NO CHAIN RELEASE; -disconnect default; -connect(default, localhost, root,,); - -ROLLBACK RELEASE; -disconnect default; -connect(default, localhost, root,,); - ---error ER_PARSE_ERROR -ROLLBACK CHAIN RELEASE; - ---error ER_PARSE_ERROR -ROLLBACK NO CHAIN RELEASE; -disconnect default; -connect(default, localhost, root,,); - ---error ER_PARSE_ERROR -ROLLBACK AND NO RELEASE; - ---error ER_PARSE_ERROR -ROLLBACK AND RELEASE; - -ROLLBACK NO RELEASE; - ---error ER_PARSE_ERROR -ROLLBACK CHAIN NO RELEASE; - ---error ER_PARSE_ERROR -ROLLBACK NO CHAIN NO RELEASE; ---error ER_PARSE_ERROR -ROLLBACK AND RELEASE CHAIN; - -ROLLBACK AND NO CHAIN NO RELEASE; - ---echo # ---echo # End of 5.5 tests ---echo # |