Skip to content

Commit

Permalink
Temporary: source datafusion from git until 22 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Mar 31, 2023
1 parent 68eddb2 commit a6d52d1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,15 @@ rusoto_dynamodb = { version = "0.47", default-features = false, optional = true
rusoto_glue = { version = "0.47", default-features = false, optional = true }

# Datafusion
datafusion = { version = "21", optional = true }
datafusion-expr = { version = "21", optional = true }
datafusion-common = { version = "21", optional = true }
datafusion-proto = { version = "21", optional = true }
# Until 21 is released with Arrow 36 support, testing must use the git tree
#datafusion = { version = "21", optional = true }
#datafusion-expr = { version = "21", optional = true }
#datafusion-common = { version = "21", optional = true }
#datafusion-proto = { version = "21", optional = true }
datafusion = { git = "https://github.com/apache/arrow-datafusion", optional = true }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion", optional = true }
datafusion-common = { git = "https://github.com/apache/arrow-datafusion", optional = true }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion", optional = true }

# NOTE dependencies only for integration tests
fs_extra = { version = "1.2.0", optional = true }
Expand Down

0 comments on commit a6d52d1

Please sign in to comment.