Gabriel39 commented on code in PR #65965:
URL: https://github.com/apache/doris/pull/65965#discussion_r3639544759
##########
be/src/format_v2/parquet/parquet_scan.cpp:
##########
@@ -1220,18 +1278,31 @@ detail::PredicateConjunctSchedule
build_predicate_conjunct_schedule(
// optimization, so any unsafe conjunct disables the per-column
schedule for the batch.
schedule.remaining_conjuncts = request.conjuncts;
schedule.single_column_conjuncts.clear();
+ schedule.remaining_stages.clear();
+ schedule.supports_lazy_materialization = false;
return schedule;
}
std::set<int> referenced_positions;
conjunct->root()->collect_slot_column_ids(referenced_positions);
if (referenced_positions.size() != 1) {
schedule.remaining_conjuncts.push_back(conjunct);
+ if (!append_residual_stages(conjunct, conjunct->root(),
predicate_block_positions,
Review Comment:
Fixed in 8eb8cdb0d88. format::Cast now explicitly reports unsafe
selected-row execution, matching ordinary VCastExpr semantics while leaving
TryCast behavior unchanged. LocalizedStrictCastPreservesRejectedRowError covers
partial survival where a rejected row contains bad input and verifies the
strict-cast error is not hidden.
--
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]