We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c28c354 commit c367338Copy full SHA for c367338
wrapper/src/main/java/software/amazon/jdbc/dialect/RdsMysqlDialect.java
@@ -27,13 +27,14 @@
27
28
public class RdsMysqlDialect extends MysqlDialect implements BlueGreenDialect {
29
30
- private static final List<String> dialectUpdateCandidates = Arrays.asList(
31
private static final String BG_STATUS_QUERY =
32
"SELECT * FROM mysql.rds_topology";
33
34
private static final String TOPOLOGY_TABLE_EXIST_QUERY =
35
"SELECT 1 AS tmp FROM information_schema.tables WHERE"
36
+ " table_schema = 'mysql' AND table_name = 'rds_topology'";
+
37
+ private static final List<String> dialectUpdateCandidates = Arrays.asList(
38
DialectCodes.AURORA_MYSQL,
39
DialectCodes.RDS_MULTI_AZ_MYSQL_CLUSTER);
40
0 commit comments