File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,10 @@ async fn main() -> anyhow::Result<()> {
8383 args. exclude_queries . as_ref ( ) ,
8484 ) ;
8585
86- // Generate base Parquet data first - all formats derive from this
87- benchmark. generate_base_data ( ) . await ?;
88-
8986 // Generate Vortex files from Parquet for any Vortex formats requested
9087 if benchmark. data_url ( ) . scheme ( ) == "file" {
88+ benchmark. generate_base_data ( ) . await ?;
89+
9190 let base_path = benchmark
9291 . data_url ( )
9392 . to_file_path ( )
Original file line number Diff line number Diff line change @@ -109,10 +109,10 @@ async fn main() -> anyhow::Result<()> {
109109 args. exclude_queries . as_ref ( ) ,
110110 ) ;
111111
112- benchmark. generate_base_data ( ) . await ?;
113-
114112 // Generate Vortex files from Parquet for any Vortex formats requested
115113 if benchmark. data_url ( ) . scheme ( ) == "file" {
114+ benchmark. generate_base_data ( ) . await ?;
115+
116116 let base_path = benchmark
117117 . data_url ( )
118118 . to_file_path ( )
You can’t perform that action at this time.
0 commit comments