fix: 判断oracle timestemp类型

This commit is contained in:
taojinlong 2023-07-23 00:14:51 +08:00
parent 031f588fbd
commit 3ba12e1a5f

View File

@ -60,7 +60,7 @@ public class OracleQueryProvider extends QueryProvider {
@Override
public Integer transFieldType(String field) {
field = field.split("()")[0];
field = field.split("\\(")[0];
switch (field) {
case "CHAR":
case "VARCHAR2":