mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 00:58:24 +08:00
update mybatis-flex-core/src/main/java/com/mybatisflex/core/dialect/DbTypeUtil.java.
修复根据人大金仓url识别错误类型的bug Signed-off-by: younger <1095367863@qq.com>
This commit is contained in:
parent
25e00c677e
commit
61857a00fe
@ -185,7 +185,7 @@ public class DbTypeUtil {
|
||||
return DbType.IMPALA;
|
||||
} else if (jdbcUrl.contains(":informix")) {
|
||||
return DbType.INFORMIX;
|
||||
} else if (jdbcUrl.contains(":kingbase\\d*:") && isMatchedRegex(":kingbase\\d*:", jdbcUrl)) {
|
||||
} else if (isMatchedRegex(":kingbase\\d*:", jdbcUrl)) {
|
||||
return DbType.KINGBASE_ES;
|
||||
} else if (jdbcUrl.contains(":lealone:")) {
|
||||
return DbType.LEALONE;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user