wsjz commented on code in PR #23485: URL: https://github.com/apache/doris/pull/23485#discussion_r1328222873
########## fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java: ########## @@ -533,6 +540,78 @@ public List<Pair<LogicalPlan, StatementContext>> visitMultiStatements(MultiState return logicalPlans; } + /** + * Visit load-statements. + */ + public LogicalPlan visitLoad(LoadContext ctx) { + + BulkStorageDesc bulkDesc = null; + DorisParser.LoadStmtContext loadStmt = ctx.loadStmt(); + if (loadStmt.withRemoteStorageSystem() != null) { + Map<String, String> bulkProperties = Review Comment: BulkStorageDesc need mutable map -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org