Skip to content

Commit 553a6ea

Browse files
wip
1 parent dd853a7 commit 553a6ea

File tree

4 files changed

+614
-6
lines changed

4 files changed

+614
-6
lines changed

Cargo.lock

Lines changed: 73 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,25 @@ members = ["benchmarks"]
44
[workspace.dependencies]
55
datafusion = { version = "50.0.0", default-features = false }
66
datafusion-proto = { version = "50.0.0" }
7+
arrow-flight = { version = "56.1.0", features = ["flight-sql-experimental"] }
78

89
[package]
910
name = "datafusion-distributed"
1011
version = "0.1.0"
1112
edition = "2024"
1213

14+
[[bin]]
15+
name = "fuzz_sql_server"
16+
path = "src/bin/fuzz_sql_server.rs"
17+
1318
[dependencies]
1419
chrono = { version = "0.4.42" }
1520
datafusion = { workspace = true }
1621
datafusion-proto = { workspace = true }
17-
arrow-flight = "56.1.0"
22+
arrow-flight = { workspace = true }
1823
arrow-select = "56.1.0"
24+
arrow-schema = "56.1.0"
25+
arrow = "56.1.0"
1926
async-trait = "0.1.88"
2027
tokio = { version = "1.46.1", features = ["full"] }
2128
# Updated to 0.13.1 to match arrow-flight 56.1.0
@@ -38,18 +45,19 @@ insta = { version = "1.43.1", features = ["filters"], optional = true }
3845
tpchgen = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68", optional = true }
3946
tpchgen-arrow = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68", optional = true }
4047
parquet = { version = "56.1.0", optional = true }
41-
arrow = { version = "56.1.0", optional = true }
4248
tokio-stream = { version = "0.1.17", optional = true }
4349
hyper-util = { version = "0.1.16", optional = true }
4450
pin-project = "1.1.10"
51+
env_logger = "0.10"
52+
log = "0.4"
53+
mimalloc = "0.1"
4554

4655
[features]
4756
integration = [
4857
"insta",
4958
"tpchgen",
5059
"tpchgen-arrow",
5160
"parquet",
52-
"arrow",
5361
"tokio-stream",
5462
"hyper-util",
5563
]

0 commit comments

Comments
 (0)