From 9a92e274b100a770205c1d2a9f3880f561935874 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Mon, 26 Aug 2024 21:30:27 -0400 Subject: [PATCH] remove references to `to parquet` subcommand/feature [skip ci] --- docs/FEATURES.md | 4 ++-- src/main.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/FEATURES.md b/docs/FEATURES.md index e263e58b3..22b667fdd 100644 --- a/docs/FEATURES.md +++ b/docs/FEATURES.md @@ -11,12 +11,12 @@ * `luau` - enable `luau` command. Embeds a [Luau](https://luau-lang.org) interpreter into qsv. [Luau has type-checking, sandboxing, additional language operators, increased performance & other improvements](https://luau-lang.org/2022/11/04/luau-origins-and-evolution.html) over Lua. * `polars` - enables all [Polars](https://pola.rs)-powered commands (currently, `joinp` and `sqlp`. Also enables polars mode in `count`). Note that Polars is a very powerful library, but it has a lot of dependencies that drastically increases both compile time and binary size. * `python` - enable `py` command. Note that qsv will look for the shared library for the Python version (Python 3.7 & above supported) it was compiled against & will abort on startup if the library is not found, even if you're NOT using the `py` command. Check [Python](#python) section for more info. -* `to` - enables the `to` command except the parquet option. +* `to` - enables the `to` command. * `self_update` - enable self-update engine, checking GitHub for the latest release. Note that if you manually built qsv, `self-update` will only check for new releases. It will NOT offer the choice to update itself to the prebuilt binaries published on GitHub. You need not worry that your manually built qsv will be overwritten by a self-update. * `feature_capable` - enable to build `qsv` binary variant which is feature-capable. -* `all_features` - enable to build `qsv` binary variant with all features enabled (apply,fetch,foreach,geocode,luau,polars,python,to,to_parquet,self_update). +* `all_features` - enable to build `qsv` binary variant with all features enabled (apply,fetch,foreach,geocode,luau,polars,python,to,self_update). * `lite` - enable to build `qsvlite` binary variant with all features disabled. * `datapusher_plus` - enable to build `qsvdp` binary variant - the [DataPusher+](https://github.com/dathere/datapusher-plus) optimized qsv binary. * `nightly` - enable to turn on nightly/unstable features in the `rand`, `hashbrown` & `pyo3` crates when building with Rust nightly/unstable. diff --git a/src/main.rs b/src/main.rs index 9456d643b..bf702a2fe 100644 --- a/src/main.rs +++ b/src/main.rs @@ -190,7 +190,7 @@ fn main() -> QsvExitCode { #[cfg(all(feature = "to", feature = "feature_capable"))] enabled_commands - .push_str(" to Convert CSVs to PostgreSQL/XLSX/Parquet/SQLite/Data Package\n"); + .push_str(" to Convert CSVs to PostgreSQL/XLSX/SQLite/Data Package\n"); enabled_commands.push_str( " transpose Transpose rows/columns of CSV data