Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1392,12 +1392,14 @@ config_namespace! {
/// rewrite; other predicates and Bloom-filter pruning remain available.
///
/// Within the cap, nonempty lists of at most 20 values use the existing
/// per-value rewrite. Larger literal string lists on a string column use
/// a compact representation, for both `IN` and `NOT IN`, including lists
/// with NULL members. `NOT IN` with NULL and all-NULL `IN` lists cannot
/// match any rows. Other lists retain the existing per-value rewrite, so
/// raising the cap can make those predicates expensive to build and
/// evaluate.
/// per-value rewrite. Larger literal lists use a compact representation
/// when the column type is string, variable-length binary, integer,
/// decimal, date, time, timestamp, or duration. This applies to both `IN`
/// and `NOT IN`, including lists with NULL members. `NOT IN` with NULL and
/// all-NULL `IN` lists cannot match any rows. Compact lists containing NULL
/// do not use the fully-matched-row-group optimization. Floating-point and
/// other lists retain the existing per-value rewrite, so raising the cap
/// can make those predicates expensive to build and evaluate.
///
/// Defaults to 20.
pub max_in_list_size: usize, default = 20
Expand Down
Loading