Skip to content

Commit f4f4d70

Browse files
authored
Add necessary features to optimizer (#5540)
1 parent ac5676f commit f4f4d70

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

datafusion/core/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,21 @@ path = "src/lib.rs"
4141
# Used to enable the avro format
4242
avro = ["apache-avro", "num-traits", "datafusion-common/avro"]
4343
compression = ["xz2", "bzip2", "flate2", "zstd", "async-compression"]
44-
crypto_expressions = ["datafusion-physical-expr/crypto_expressions"]
44+
crypto_expressions = ["datafusion-physical-expr/crypto_expressions", "datafusion-optimizer/crypto_expressions"]
4545
default = ["crypto_expressions", "regex_expressions", "unicode_expressions", "compression"]
4646
# Enables support for non-scalar, binary operations on dictionaries
4747
# Note: this results in significant additional codegen
48-
dictionary_expressions = ["datafusion-physical-expr/dictionary_expressions"]
48+
dictionary_expressions = ["datafusion-physical-expr/dictionary_expressions", "datafusion-optimizer/dictionary_expressions"]
4949
# Used for testing ONLY: causes all values to hash to the same value (test for collisions)
5050
force_hash_collisions = []
5151
# Used to enable JIT code generation
5252
jit = ["datafusion-jit", "datafusion-row/jit"]
5353
pyarrow = ["datafusion-common/pyarrow"]
54-
regex_expressions = ["datafusion-physical-expr/regex_expressions"]
54+
regex_expressions = ["datafusion-physical-expr/regex_expressions", "datafusion-optimizer/regex_expressions"]
5555
# Used to enable scheduler
5656
scheduler = ["rayon"]
5757
simd = ["arrow/simd"]
58-
unicode_expressions = ["datafusion-physical-expr/regex_expressions", "datafusion-sql/unicode_expressions"]
58+
unicode_expressions = ["datafusion-physical-expr/unicode_expressions", "datafusion-optimizer/unicode_expressions", "datafusion-sql/unicode_expressions"]
5959

6060
[dependencies]
6161
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
@@ -71,8 +71,8 @@ datafusion-common = { path = "../common", version = "19.0.0", features = ["parqu
7171
datafusion-execution = { path = "../execution", version = "19.0.0" }
7272
datafusion-expr = { path = "../expr", version = "19.0.0" }
7373
datafusion-jit = { path = "../jit", version = "19.0.0", optional = true }
74-
datafusion-optimizer = { path = "../optimizer", version = "19.0.0" }
75-
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0" }
74+
datafusion-optimizer = { path = "../optimizer", version = "19.0.0", default-features = false }
75+
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0", default-features = false }
7676
datafusion-row = { path = "../row", version = "19.0.0" }
7777
datafusion-sql = { path = "../sql", version = "19.0.0" }
7878
flate2 = { version = "1.0.24", optional = true }

datafusion/optimizer/Cargo.toml

+6-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,19 @@ name = "datafusion_optimizer"
3333
path = "src/lib.rs"
3434

3535
[features]
36-
default = ["unicode_expressions"]
37-
unicode_expressions = []
36+
crypto_expressions = ["datafusion-physical-expr/crypto_expressions"]
37+
default = ["unicode_expressions", "crypto_expressions", "regex_expressions"]
38+
dictionary_expressions = ["datafusion-physical-expr/dictionary_expressions"]
39+
regex_expressions = ["datafusion-physical-expr/regex_expressions"]
40+
unicode_expressions = ["datafusion-physical-expr/unicode_expressions"]
3841

3942
[dependencies]
4043
arrow = { version = "34.0.0", features = ["prettyprint"] }
4144
async-trait = "0.1.41"
4245
chrono = { version = "0.4.23", default-features = false }
4346
datafusion-common = { path = "../common", version = "19.0.0" }
4447
datafusion-expr = { path = "../expr", version = "19.0.0" }
45-
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0" }
48+
datafusion-physical-expr = { path = "../physical-expr", version = "19.0.0", default-features = false }
4649
hashbrown = { version = "0.13", features = ["raw"] }
4750
itertools = "0.10"
4851
log = "^0.4"

0 commit comments

Comments
 (0)