Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
1f12ffe
moving enforce_distribution
logan-keede Jan 18, 2025
b58f9d6
formatting fix
logan-keede Jan 18, 2025
0d571a7
Update Cargo.toml
logan-keede Jan 18, 2025
24ab913
pulll source
logan-keede Jan 19, 2025
a7f8927
move_tests to core integration tests
logan-keede Jan 19, 2025
0296d04
remove tests from enforce_distribution.rs
logan-keede Jan 20, 2025
1d94407
Merge branch 'move_crates' of https://github.com/logan-keede/datafusi…
logan-keede Jan 20, 2025
7cd4b31
passes lint
buraksenn Jan 20, 2025
eb8ac39
forgotten license header
buraksenn Jan 20, 2025
8103f00
move enforce_sorting
logan-keede Jan 20, 2025
460c92d
merge main
buraksenn Jan 21, 2025
fef3c6e
import order
buraksenn Jan 21, 2025
7c1dad6
Merge branch 'move-enforce-sorting-to-new-crate' of https://github.co…
logan-keede Jan 21, 2025
dcbc0e1
merge fixes + formatting
logan-keede Jan 21, 2025
1f116e4
fix: forgotten license
logan-keede Jan 21, 2025
5093e61
fix: cargo fmt
logan-keede Jan 21, 2025
9c40e49
fix tests
buraksenn Jan 21, 2025
3d78ef2
Merge branch 'move-enforce-sorting-to-new-crate' of https://github.co…
logan-keede Jan 21, 2025
9d19863
fix: ci tests
logan-keede Jan 21, 2025
eba718a
fix: Cargo.toml formatting
logan-keede Jan 21, 2025
8926f90
Merge branch 'apache_main' into move_crates
berkaysynnada Jan 22, 2025
afb20f8
further removals
berkaysynnada Jan 22, 2025
f04332d
Further migrations and simplificaitons
berkaysynnada Jan 22, 2025
20d47d3
Fix failing tests
berkaysynnada Jan 22, 2025
b13ba8e
Final pass
berkaysynnada Jan 22, 2025
9e1dfbb
Update datafusion-testing
berkaysynnada Jan 22, 2025
b7373fb
Update test_utils.rs
berkaysynnada Jan 22, 2025
a8fe5ca
fix the dep
berkaysynnada Jan 22, 2025
99a419f
Update Cargo.toml
berkaysynnada Jan 22, 2025
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
Prev Previous commit
Next Next commit
pulll source
  • Loading branch information
logan-keede committed Jan 19, 2025
commit 24ab91364f34276a0f19b03256e4a198e0d3608d
3 changes: 2 additions & 1 deletion datafusion/physical-optimizer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ workspace = true

[features]
recursive_protection = ["dep:recursive"]
parquet = ["parquet"]
parquet = ["dep:parquet"]

[dependencies]
arrow = { workspace = true }
Expand All @@ -49,6 +49,7 @@ futures = { workspace = true }
itertools = { workspace = true }
log = { workspace = true }
recursive = { workspace = true, optional = true }
parquet = { workspace = true, optional = true, default-features = true }

[dev-dependencies]
datafusion-expr = { workspace = true }
Expand Down