We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I did a mvn spring-boot:run, I got version 5.1.32 of the mysql-connector-java. It caused an error:
mvn spring-boot:run
java.sql.SQLException: Unknown system variable 'tx_read_only'
If I looked at metabase/metabase#6984 I could fix it by specifying a later version in the pom.xml:
$ git diff pom.xml diff --git a/pom.xml b/pom.xml index f2c7be4..c8a878f 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,8 @@ <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> - </dependency> + <version>5.1.45</version> + </dependency>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I did a
mvn spring-boot:run
, I got version 5.1.32 of the mysql-connector-java. It caused an error:If I looked at metabase/metabase#6984
I could fix it by specifying a later version in the pom.xml:
The text was updated successfully, but these errors were encountered: