Skip to content

Commit ca6a38f

Browse files
committed
tpchgen dependency fix
1 parent 727e391 commit ca6a38f

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ thiserror = "2.0.3"
203203
tokio = { version = "1.47" }
204204
tokio-stream = "0.1.17"
205205
tokio-util = { version = "0.7.16" }
206-
tpchgen = { version = "2" }
207-
tpchgen-arrow = { version = "2" }
206+
tpchgen = { version = "2", git = "https://github.com/kevinjqliu/tpchgen-rs.git", rev = "c38f69b0dc84c4b7edfad349d1a9cd1a134b8018" }
207+
tpchgen-arrow = { version = "2", git = "https://github.com/kevinjqliu/tpchgen-rs.git", rev = "c38f69b0dc84c4b7edfad349d1a9cd1a134b8018" }
208208
tracing = { version = "0.1.41" }
209209
tracing-perfetto = "0.1.5"
210210
tracing-subscriber = "0.3.20"

bench-vortex/src/public_bi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ impl PBIData {
414414
ListingOptions::new(df_format)
415415
.with_session_config_options(session.state().config()),
416416
)
417-
.with_schema(schema.into());
417+
.with_schema(schema.inner().clone());
418418

419419
let listing_table = Arc::new(ListingTable::try_new(config)?);
420420
session.register_table(table_ref, listing_table)?;

0 commit comments

Comments
 (0)