eldenmoon commented on code in PR #26749:
URL: https://github.com/apache/doris/pull/26749#discussion_r1403950491
##########
be/src/vec/exec/scan/vscan_node.h:
##########
@@ -271,10 +276,15 @@ class VScanNode : public ExecNode, public
RuntimeFilterConsumer {
// Save all function predicates which may be pushed down to data source.
std::vector<FunctionFilter> _push_down_functions;
+ // colname -> cast dst type
+ std::map<std::string, PrimitiveType> _cast_types_for_variants;
+
// slot id -> ColumnValueRange
// Parsed from conjuncts
phmap::flat_hash_map<int, std::pair<SlotDescriptor*, ColumnValueRangeType>>
_slot_id_to_value_range;
+ // slot id -> slot idx in TupleDescriptor
+ phmap::flat_hash_map<int, int> _slot_id_to_slot_idx;
Review Comment:
done
--
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]