imay commented on a change in pull request #1255: Change strategy of incorrect 
data
URL: https://github.com/apache/incubator-doris/pull/1255#discussion_r291069965
 
 

 ##########
 File path: be/src/exec/broker_scanner.cpp
 ##########
 @@ -133,6 +135,15 @@ Status BrokerScanner::init_expr_ctxes() {
         RETURN_IF_ERROR(ctx->prepare(_state, *_row_desc.get(), 
_mem_tracker.get()));
         RETURN_IF_ERROR(ctx->open(_state));
         _dest_expr_ctx.emplace_back(ctx);
+        if (has_transform_slot_ids) {
+            auto it = _params.transform_slot_ids.find(slot_desc->id());
+            if (it == std::end(_params.transform_slot_ids)) {
+                _has_expr_columns.emplace_back(false);
+            }
+            else {
 
 Review comment:
   } else {

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to