Merge pull request #5744 from dataease/pr@dev@fixdatasource

fix: 判断oracle timestemp类型
This commit is contained in:
taojinlong 2023-07-23 00:15:41 +08:00 committed by GitHub
commit 6e1ad003d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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":