You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default metadata storage has been configured as mysql :
Properties props2 = new Properties();
props2.setProperty("jdbcUrl", "jdbc:mysql://xx.xx.xx.xx:xx/user");
props2.setProperty("username", "root");
props2.setProperty("password", "root.");
ModeConfiguration modeConfiguration =
new ModeConfiguration("Standalone", new StandalonePersistRepositoryConfiguration("JDBC", props2));
Error reported when the project is stopped:
org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "repository" not found; SQL statement:
DELETE FROM repository WHERE key LIKE ? [42102-200]
May I ask why there is an error message regarding the H2 database
The text was updated successfully, but these errors were encountered:
MyHeart0
changed the title
Project stop reporting error
Project stop reporting error :org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "repository" not found; SQL statement:
May 21, 2025
I guess there are some edge cases involved here, because the unit tests of the relevant classes cannot use testcontainers-java and just mock some results normally.
Could you provide a git containing the unit tests for testcontainers-java ? I'd like to know the specific mysql version.
javaproject
The introduced dependencies are:
org.apache.shardingsphere
shardingsphere-jdbc
5.5.1
The default metadata storage has been configured as mysql :
Properties props2 = new Properties();
props2.setProperty("jdbcUrl", "jdbc:mysql://xx.xx.xx.xx:xx/user");
props2.setProperty("username", "root");
props2.setProperty("password", "root.");
ModeConfiguration modeConfiguration =
new ModeConfiguration("Standalone", new StandalonePersistRepositoryConfiguration("JDBC", props2));
Error reported when the project is stopped:
org.h2.jdbc.JdbcSQLSyntaxErrorException: Table "repository" not found; SQL statement:
DELETE FROM
repository
WHEREkey
LIKE ? [42102-200]May I ask why there is an error message regarding the H2 database
The text was updated successfully, but these errors were encountered: