[improvement][launcher]Refactor unit tests and demo data. (#1935)

This commit is contained in:
Jun Zhang
2024-12-01 21:08:26 +08:00
committed by GitHub
parent 639d1a78da
commit 0fc29304a8
67 changed files with 2181 additions and 2373 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)