Skip to content

Commit

Permalink
use temp datafusion branch
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jan 24, 2025
1 parent f2c1409 commit 6400197
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 32 deletions.
44 changes: 22 additions & 22 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 23 additions & 10 deletions native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resolver = "2"
[workspace.package]
version = "0.6.0"
homepage = "https://datafusion.apache.org/comet"
repository = "https://github.com/apache/datafusion-comet"
repository = "https://github.com/andygrove/datafusion-comet"
authors = ["Apache DataFusion <[email protected]>"]
description = "Apache DataFusion Comet: High performance accelerator for Apache Spark"
readme = "README.md"
Expand All @@ -39,15 +39,28 @@ arrow-buffer = { version = "54.0.0" }
arrow-data = { version = "54.0.0" }
arrow-schema = { version = "54.0.0" }
parquet = { version = "54.0.0", default-features = false, features = ["experimental"] }
datafusion = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false, features = ["unicode_expressions", "crypto_expressions"] }
datafusion-common = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-functions = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false, features = ["crypto_expressions"] }
datafusion-functions-nested = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-expr = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-expr-common = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-execution = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-physical-plan = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }
datafusion-physical-expr = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false }

datafusion = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false, features = ["unicode_expressions", "crypto_expressions"] }
datafusion-common = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-functions = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false, features = ["crypto_expressions"] }
datafusion-functions-nested = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-expr = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-expr-common = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-execution = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-physical-plan = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }
datafusion-physical-expr = { git = "https://github.com/andygrove/datafusion", branch = "issue-14277", default-features = false }

# temp for testing DataFusion changes locally
#datafusion = { path = "/home/andy/git/apache/datafusion/datafusion/core", default-features = false, features = ["unicode_expressions", "crypto_expressions"] }
#datafusion-common = { path = "/home/andy/git/apache/datafusion/datafusion/common", default-features = false }
#datafusion-functions = { path = "/home/andy/git/apache/datafusion/datafusion/functions", default-features = false, features = ["crypto_expressions"] }
#datafusion-functions-nested = { path = "/home/andy/git/apache/datafusion/datafusion/functions-nested", default-features = false }
#datafusion-expr = { path = "/home/andy/git/apache/datafusion/datafusion/expr", default-features = false }
#datafusion-expr-common = { path = "/home/andy/git/apache/datafusion/datafusion/expr-common", default-features = false }
#datafusion-execution = { path = "/home/andy/git/apache/datafusion/datafusion/execution", default-features = false }
#datafusion-physical-plan = { path = "/home/andy/git/apache/datafusion/datafusion/physical-plan", default-features = false }
#datafusion-physical-expr = { path = "/home/andy/git/apache/datafusion/datafusion/physical-expr", default-features = false }

datafusion-comet-spark-expr = { path = "spark-expr", version = "0.6.0" }
datafusion-comet-proto = { path = "proto", version = "0.6.0" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
Expand Down

0 comments on commit 6400197

Please sign in to comment.