Bug #70008 | use tx_isolation for startup/my.cnf parameter settings for consistency | ||
---|---|---|---|
Submitted: | 13 Aug 2013 5:35 | Modified: | 3 Dec 2013 8:46 |
Reporter: | Simon Mudd (OCA) | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Options | Severity: | S3 (Non-critical) |
Version: | all (up to 5.7.1) | OS: | Any (n/a) |
Assigned to: | CPU Architecture: | Any |
[13 Aug 2013 5:35]
Simon Mudd
[13 Aug 2013 10:03]
MySQL Verification Team
Hello Simon, Thank you for the report. I agree with you on sticking to a common "name" for this purpose to avoid any confusion between Command-Line vs System Variable/Option-File naming. Thanks, Umesh
[3 Dec 2013 8:46]
Simon Mudd
Bitten by this again. 5.7 is not GA yet so would be good to fix this and make life easier for everyone.
[3 Dec 2013 10:21]
Mark Leith
Note that the tx_read_only variable is also like this, where you use --transaction-read-only option. http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html#sysvar_tx_read_only We have a number of other variables that are both configured, and exposed, using a transaction_* prefix already: transaction_alloc_block_size transaction_allow_batching transaction_prealloc_size Seems like we should just expose them using the transaction_* prefix as well.
[17 Mar 2017 5:35]
MySQL Verification Team
Bug #85494 marked as duplicate of this
[23 May 2018 6:25]
MySQL Verification Team
mysql> show global variables like '%isolation%'; +-----------------------+----------------+ | Variable_name | Value | +-----------------------+----------------+ | transaction_isolation | READ-COMMITTED | +-----------------------+----------------+ 1 row in set (0.01 sec) mysql> select version(); +-------------------+ | version() | +-------------------+ | 8.0.11-commercial | +-------------------+ 1 row in set (0.00 sec)