This commit is contained in:
J-huhan 2025-07-01 18:46:59 +08:00 committed by GitHub
commit 8e7aaef83e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -172,8 +172,8 @@ public class CommonRdbmsReader {
public void startRead(Configuration readerSliceConfig,
RecordSender recordSender,
TaskPluginCollector taskPluginCollector, int fetchSize) {
String querySql = readerSliceConfig.getString(Key.QUERY_SQL);
String table = readerSliceConfig.getString(Key.TABLE);
String querySql = readerSliceConfig.getString(Key.QUERY_SQL).replaceAll(Constant.TABLE_NAME_PLACEHOLDER, table);
PerfTrace.getInstance().addTaskDetails(taskId, table + "," + basicMsg);