This is an automated email from the ASF dual-hosted git repository.
prantogg pushed a change to branch support-multipart
in repository https://gitbox.apache.org/repos/asf/sedona-spatialbench.git
from e2277ca temp: rename to tpchgen
add bbe43e1 Bump rust version to 1.90.0 (#55)
add 2da8e5e Upgrade arrow/parquet to 56.2.0 and datafusion to 50.2.0 (#56)
add 15338e2 feat: load Overture Divisions from Hugging Face over HTTPS
instead of S3 (#54)
new 02f099f Merge branch 'main' into support-multipart
new 60bbdaf refactor zone generation for readability
new f8953a7 allow generating multi-part zone
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
rust-toolchain.toml | 2 +-
tpchgen-arrow/Cargo.toml | 4 +-
tpchgen-cli/Cargo.toml | 12 +-
tpchgen-cli/src/main.rs | 49 ++--
tpchgen-cli/src/zone/config.rs | 52 ++++
tpchgen-cli/src/zone/datasource.rs | 95 +++++++
tpchgen-cli/src/zone/main.rs | 63 +++++
tpchgen-cli/src/zone/mod.rs | 88 ++++++
tpchgen-cli/src/zone/partition.rs | 94 +++++++
tpchgen-cli/src/zone/stats.rs | 161 +++++++++++
tpchgen-cli/src/zone/transform.rs | 50 ++++
tpchgen-cli/src/zone/writer.rs | 67 +++++
tpchgen-cli/src/zone_df.rs | 501 -----------------------------------
tpchgen-cli/tests/cli_integration.rs | 38 +--
14 files changed, 721 insertions(+), 555 deletions(-)
create mode 100644 tpchgen-cli/src/zone/config.rs
create mode 100644 tpchgen-cli/src/zone/datasource.rs
create mode 100644 tpchgen-cli/src/zone/main.rs
create mode 100644 tpchgen-cli/src/zone/mod.rs
create mode 100644 tpchgen-cli/src/zone/partition.rs
create mode 100644 tpchgen-cli/src/zone/stats.rs
create mode 100644 tpchgen-cli/src/zone/transform.rs
create mode 100644 tpchgen-cli/src/zone/writer.rs
delete mode 100644 tpchgen-cli/src/zone_df.rs