Skip to content

Commit

Permalink
fix tomlfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Feb 13, 2024
1 parent 227695c commit dfaa978
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datafusion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ compression = ["xz2", "bzip2", "flate2", "zstd", "async-compression", "tokio-uti
crypto_expressions = ["datafusion-physical-expr/crypto_expressions", "datafusion-optimizer/crypto_expressions"]
default = ["array_expressions", "crypto_expressions", "encoding_expressions", "regex_expressions", "unicode_expressions", "compression", "parquet"]
encoding_expressions = ["datafusion-functions/encoding_expressions"]
math_expressions = ["datafusion-functions/math_expressions"]
# Used for testing ONLY: causes all values to hash to the same value (test for collisions)
force_hash_collisions = []
math_expressions = ["datafusion-functions/math_expressions"]
parquet = ["datafusion-common/parquet", "dep:parquet"]
pyarrow = ["datafusion-common/pyarrow", "parquet"]
regex_expressions = ["datafusion-physical-expr/regex_expressions", "datafusion-optimizer/regex_expressions"]
Expand Down
4 changes: 2 additions & 2 deletions datafusion/functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ authors = { workspace = true }
rust-version = { workspace = true }

[features]
# Enable encoding by default so the doctests work. In general don't automatically enable all packages.
default = ["core_expressions", "encoding_expressions", "math_expressions"]
# enable core functions
core_expressions = []
# Enable encoding by default so the doctests work. In general don't automatically enable all packages.
default = ["core_expressions", "encoding_expressions", "math_expressions"]
# enable encode/decode functions
encoding_expressions = ["base64", "hex"]
# enable math functions
Expand Down

0 comments on commit dfaa978

Please sign in to comment.