[improvement][launcher]Refactor unit tests and demo data.

[improvement][launcher]Refactor unit tests and demo data.

[improvement][launcher]Refactor unit tests and demo data.

[improvement][launcher]Refactor unit tests and demo data.
This commit is contained in:
jerryjzhang
2024-12-01 16:23:05 +08:00
parent 1c73453c5f
commit 0f1c50167d
84 changed files with 2097 additions and 7421 deletions

View File

@@ -78,7 +78,9 @@ public class PostgresqlAdaptor extends BaseDbAdaptor {
}
return o;
});
return SqlReplaceHelper.replaceFunction(sql, functionMap, functionCall);
sql = SqlReplaceHelper.replaceFunction(sql, functionMap, functionCall);
sql = sql.replaceAll("`", "\"");
return sql;
}
public List<String> getTables(ConnectInfo connectionInfo, String schemaName)