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 Apr 8, 2023
1 parent d5381c9 commit c032acc
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,18 @@ 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 }
datafusion-sql = { version = "19", optional = true }
#datafusion = { version = "21", optional = true }
#datafusion-expr = { version = "21", optional = true }
#datafusion-common = { version = "21", optional = true }
#datafusion-proto = { version = "21", optional = true }
#datafusion-sql = { version = "21", optional = true }

datafusion = { git = "https://github.com/apache/arrow-datafusion", branch = "main", optional = true }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion", branch = "main", optional = true }
datafusion-common = { git = "https://github.com/apache/arrow-datafusion", branch = "main", optional = true }
datafusion-proto = { git = "https://github.com/apache/arrow-datafusion", branch = "main", optional = true }
datafusion-sql = { git = "https://github.com/apache/arrow-datafusion", branch = "main", optional = true }

sqlparser = { version = "0.30", optional = true }

# NOTE dependencies only for integration tests
Expand Down

0 comments on commit c032acc

Please sign in to comment.