yixiutt commented on code in PR #17004:
URL: https://github.com/apache/doris/pull/17004#discussion_r1113964073
##########
fe/fe-core/src/main/java/org/apache/doris/load/Load.java:
##########
@@ -610,9 +610,9 @@ private static void initColumns(Table tbl,
List<ImportColumnDesc> columnExprs,
if (hiddenColumns != null) {
for (String columnName : hiddenColumns) {
Column column = tbl.getColumn(columnName);
- if (column != null && !column.isVisible()) {
- ImportColumnDesc columnDesc = new
ImportColumnDesc(column.getName());
- LOG.debug("add hidden column {} to stream load task",
column.getName());
+ if (column == null || !column.isVisible()) {
Review Comment:
may add sequence column twice?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]