SbloodyS commented on code in PR #11493:
URL: https://github.com/apache/dolphinscheduler/pull/11493#discussion_r947425997
##########
dolphinscheduler-task-plugin/dolphinscheduler-task-datax/src/main/java/org/apache/dolphinscheduler/plugin/task/datax/DataxTask.java:
##########
@@ -565,7 +565,7 @@ public String[] tryExecuteSqlResolveColumnNames(DbType
sourceType, BaseConnectio
int num = md.getColumnCount();
columnNames = new String[num];
for (int i = 1; i <= num; i++) {
- columnNames[i - 1] = md.getColumnName(i);
+ columnNames[i - 1] = md.getColumnName(i).replaceAll("t.","");
Review Comment:
If so, we should judge whether is hive type before performing this
replacement.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]