-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Officially maintained Arrow2 branch #1556
Changes from all commits
099398e
a5b2557
a0c9669
3218759
a035200
843fbe6
fccbddb
77c69cf
2d2e379
cb187a6
25363d2
7a5294b
4030615
fde82cf
b585f3b
99907fd
b2f709d
ed5281c
f9504e7
33b6931
ca53b64
8702e12
41153dc
ba57aa8
387fdf6
0d504e6
ea6d7fa
44db376
ca9b485
b9125bc
99fdac3
1b916aa
d611d4d
171332f
4344454
257a7c5
b5cb938
e53d165
2293921
505084c
a27de10
7e8b8d9
8a6fb2c
60e869e
1e352c3
2698383
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ async fn main() -> Result<()> { | |
.build()?; | ||
let ctx = BallistaContext::remote("localhost", 50050, &config); | ||
|
||
let testdata = datafusion::arrow::util::test_util::arrow_test_data(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this was made private in |
||
let testdata = datafusion::test_util::arrow_test_data(); | ||
|
||
// register csv file with the execution context | ||
ctx.register_csv( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,23 +35,21 @@ async-trait = "0.1.36" | |
futures = "0.3" | ||
hashbrown = "0.11" | ||
log = "0.4" | ||
prost = "0.8" | ||
prost = "0.9" | ||
serde = {version = "1", features = ["derive"]} | ||
sqlparser = "0.13" | ||
tokio = "1.0" | ||
tonic = "0.5" | ||
tonic = "0.6" | ||
uuid = { version = "0.8", features = ["v4"] } | ||
chrono = { version = "0.4", default-features = false } | ||
|
||
# workaround for https://github.com/apache/arrow-datafusion/issues/1498 | ||
# should be able to remove when we update arrow-flight | ||
quote = "=1.0.10" | ||
arrow-flight = { version = "6.4.0" } | ||
arrow-format = { version = "0.3", features = ["flight-data", "flight-service"] } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://crates.io/crates/arrow-format for anyone else following along Perhaps that is something else we could consider putting into the official apache repo over time (to reduce maintenance costs / allow others to help do so) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree. |
||
arrow = { package = "arrow2", version="0.8", features = ["io_ipc", "io_flight"] } | ||
|
||
datafusion = { path = "../../../datafusion", version = "6.0.0" } | ||
|
||
[dev-dependencies] | ||
tempfile = "3" | ||
|
||
[build-dependencies] | ||
tonic-build = { version = "0.5" } | ||
tonic-build = { version = "0.6" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍