|
2 | 2 | // SPDX-FileCopyrightText: Copyright the Vortex contributors |
3 | 3 |
|
4 | 4 | use std::fs::File; |
5 | | -use std::io::{Write, stdout}; |
| 5 | +use std::io::Write; |
| 6 | +use std::io::stdout; |
6 | 7 | use std::path::PathBuf; |
7 | 8 | use std::time::Duration; |
8 | 9 |
|
9 | | -use bench_vortex::compress::bench::{self as compress, CompressMeasurements, CompressOp}; |
| 10 | +use bench_vortex::Engine; |
| 11 | +use bench_vortex::Format; |
| 12 | +use bench_vortex::Target; |
| 13 | +use bench_vortex::compress::bench::CompressMeasurements; |
| 14 | +use bench_vortex::compress::bench::CompressOp; |
| 15 | +use bench_vortex::compress::bench::{self as compress}; |
10 | 16 | use bench_vortex::datasets::Dataset; |
11 | 17 | use bench_vortex::datasets::struct_list_of_ints::StructListOfInts; |
12 | 18 | use bench_vortex::datasets::taxi_data::TaxiData; |
13 | | -use bench_vortex::datasets::tpch_l_comment::{TPCHLCommentCanonical, TPCHLCommentChunked}; |
14 | | -use bench_vortex::display::{DisplayFormat, print_measurements_json, render_table}; |
| 19 | +use bench_vortex::datasets::tpch_l_comment::TPCHLCommentCanonical; |
| 20 | +use bench_vortex::datasets::tpch_l_comment::TPCHLCommentChunked; |
| 21 | +use bench_vortex::display::DisplayFormat; |
| 22 | +use bench_vortex::display::print_measurements_json; |
| 23 | +use bench_vortex::display::render_table; |
15 | 24 | use bench_vortex::downloadable_dataset::DownloadableDataset; |
16 | | -use bench_vortex::measurements::{CompressionTimingMeasurement, CustomUnitMeasurement}; |
| 25 | +use bench_vortex::measurements::CompressionTimingMeasurement; |
| 26 | +use bench_vortex::measurements::CustomUnitMeasurement; |
17 | 27 | use bench_vortex::public_bi::PBI_DATASETS; |
18 | | -use bench_vortex::public_bi::PBIDataset::{Arade, Bimbo, CMSprovider, Euro2016, Food, HashTags}; |
| 28 | +use bench_vortex::public_bi::PBIDataset::Arade; |
| 29 | +use bench_vortex::public_bi::PBIDataset::Bimbo; |
| 30 | +use bench_vortex::public_bi::PBIDataset::CMSprovider; |
| 31 | +use bench_vortex::public_bi::PBIDataset::Euro2016; |
| 32 | +use bench_vortex::public_bi::PBIDataset::Food; |
| 33 | +use bench_vortex::public_bi::PBIDataset::HashTags; |
| 34 | +use bench_vortex::setup_logging_and_tracing; |
19 | 35 | use bench_vortex::utils::new_tokio_runtime; |
20 | | -use bench_vortex::{Engine, Format, Target, setup_logging_and_tracing}; |
21 | 36 | use clap::Parser; |
22 | 37 | use indicatif::ProgressBar; |
23 | 38 | use itertools::Itertools; |
24 | 39 | use regex::Regex; |
25 | 40 | use tokio::runtime::Runtime; |
26 | | -use vortex::arrays::{ChunkedArray, ChunkedVTable}; |
| 41 | +use vortex::Array; |
| 42 | +use vortex::IntoArray; |
| 43 | +use vortex::arrays::ChunkedArray; |
| 44 | +use vortex::arrays::ChunkedVTable; |
27 | 45 | use vortex::builders::builder_with_capacity; |
28 | 46 | use vortex::utils::aliases::hash_map::HashMap; |
29 | | -use vortex::{Array, IntoArray}; |
30 | 47 |
|
31 | 48 | #[derive(Parser, Debug)] |
32 | 49 | #[command(version, about, long_about = None)] |
|
0 commit comments