summaryrefslogtreecommitdiff
path: root/mysql-test/r/commit.result
Commit message (Collapse)AuthorAgeFilesLines
* Create 'main' test directory and move 't' and 'r' thereMichael Widenius2018-03-291-578/+0
|
* Remove end . from error messages to get them consistentMonty2016-10-051-32/+32
| | | | Fixed a few failing tests
* MDEV-6720 - enable connection log in mysqltest by defaultSergey Vojtovich2016-03-311-31/+33
|
* SQL syntax extended with START TRANSACTION READ ONLY|READ WRITEAlexey Botchkov2012-08-251-1/+305
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and SET TRANSACTION READ ONLT|READ WRITE statements. per-file comments: mysql-test/include/check-warnings.test READ ONLY transaction flag cleaned. mysql-test/r/commit.result result updated mysql-test/r/read_only.result result updated mysql-test/t/commit.test tests added. mysql-test/t/read_only.test tests added sql/lex.h ONLY symbol added. sql/sql_base.cc DBUG_RETURN added. sql/sql_parse.cc implementations added. sql/sql_yacc.yy SQL syntax extended. storage/perfschema/gen_pfs_lex_token changes forced by lex.h storage/perfschema/pfs_lex_token.h changes forced by lex.h
* Added support of thd->tx_read_onlyMichael Widenius2012-08-071-1/+1
| | | | | | | Moved timestamp handling from all handler::write() methods in the storage engines to handler::ha_write sql/handler.cc: Added PSI_CALL's
* Bug#20837 Apparent change of isolation level during transactionMagne Mahre2010-06-081-0/+272
Bug#46527 COMMIT AND CHAIN RELEASE does not make sense Bug#53343 completion_type=1, COMMIT/ROLLBACK AND CHAIN don't preserve the isolation level Bug#53346 completion_type has strange effect in a stored procedure/prepared statement Added test cases to verify the expected behaviour of : SET SESSION TRANSACTION ISOLATION LEVEL, SET TRANSACTION ISOLATION LEVEL, @@completion_type, COMMIT AND CHAIN, ROLLBACK AND CHAIN ..and some combinations of the above