GOLDENDB数据库调整.

https://github.com/baomidou/mybatis-plus/pull/6330
This commit is contained in:
nieqiurong 2024-07-10 23:07:34 +08:00
parent 1c3c70959c
commit 1a27a248a4
2 changed files with 2 additions and 3 deletions

View File

@ -259,7 +259,8 @@ public enum DbType {
|| this == DbType.CLICK_HOUSE
|| this == DbType.OCEAN_BASE
|| this == DbType.CUBRID
|| this == DbType.SUNDB;
|| this == DbType.SUNDB
|| this == DbType.GOLDENDB;
}
public boolean oracleSameType() {

View File

@ -73,8 +73,6 @@ public class DialectFactory {
} else if (dbType == DbType.TRINO
|| dbType == DbType.PRESTO) {
dialect = new TrinoDialect();
} else if (dbType == DbType.GOLDENDB) {
dialect = new MySqlDialect();
}
DIALECT_ENUM_MAP.put(dbType, dialect);
}