Skip to content

Commit

Permalink
fix: Always save TPC-H data in bench-vortex/data (#1957)
Browse files Browse the repository at this point in the history
  • Loading branch information
robert3005 authored Jan 15, 2025
1 parent 9cf1eec commit 3ecb285
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bench-vortex/src/tpch/dbgen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ use itertools::Itertools;
use tar::Archive;
use xshell::Shell;

use crate::IdempotentPath;

pub struct DBGen {
options: DBGenOptions,
}
Expand All @@ -37,7 +39,7 @@ impl Default for DBGenOptions {
fn default() -> Self {
Self {
scale_factor: 1,
base_dir: std::env::current_dir().unwrap().join("data").join("tpch"),
base_dir: "tpch".to_data_path(),
cache_dir: homedir::my_home()
.unwrap()
.unwrap()
Expand Down

0 comments on commit 3ecb285

Please sign in to comment.