Open
Description
This is the place to report a bug, ask a question, or suggest an enhancement.
In this PR da35142
GetDBUri()
will execute a statement such as the following:
set transaction_isolation = 'repeatable-read';
This variable was only introduced in MySQL 5.7.20, so if you are using an earlier version such as what Aurora 5.7 is, it will result in an error:
mysql> set transaction_isolation = 'repeatable-read';
ERROR 1193 (HY000): Unknown system variable 'transaction_isolation'
Instead the statement needs to be set tx_isolation = 'repeatable-read'
, but this statement is not supported by MySQL 8.0. So some version-specific logic is probably required.
Metadata
Metadata
Assignees
Labels
No labels