You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// When set to true attempts to push down dynamic filters generated by operators (topk & join) into the file scan phase.
735
743
/// For example, for a query such as `SELECT * FROM t ORDER BY timestamp DESC LIMIT 10`, the optimizer
736
744
/// will attempt to push down the current top 10 timestamps that the TopK operator references into the file scans.
737
745
/// This means that if we already have 10 timestamps in the year 2025
738
746
/// any files that only have timestamps in the year 2024 can be skipped / pruned at various stages in the scan.
747
+
/// The config will suppress `enable_join_dynamic_filter_pushdown` & `enable_topk_dynamic_filter_pushdown`
748
+
/// So if you disable `enable_topk_dynamic_filter_pushdown`, then enable `enable_dynamic_filter_pushdown`, the `enable_topk_dynamic_filter_pushdown` will be overridden.
0 commit comments