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.
749
757
/// For example, for a query such as `SELECT * FROM t ORDER BY timestamp DESC LIMIT 10`, the optimizer
750
758
/// will attempt to push down the current top 10 timestamps that the TopK operator references into the file scans.
751
759
/// This means that if we already have 10 timestamps in the year 2025
752
760
/// any files that only have timestamps in the year 2024 can be skipped / pruned at various stages in the scan.
761
+
/// The config will suppress `enable_join_dynamic_filter_pushdown` & `enable_topk_dynamic_filter_pushdown`
762
+
/// 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