From 61b6027da86661edd11a0715c1d669972944b930 Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Mon, 8 Jan 2024 05:43:22 -0500 Subject: [PATCH] `sqlp`: fixed --rnull-value option in wrong section [skip ci] --- src/cmd/sqlp.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cmd/sqlp.rs b/src/cmd/sqlp.rs index 45a9748b8..2fffac7ca 100644 --- a/src/cmd/sqlp.rs +++ b/src/cmd/sqlp.rs @@ -129,7 +129,7 @@ sqlp options: avro Apache Avro (default: csv) - POLARS CSV PARSING OPTIONS: + POLARS CSV INPUT PARSING OPTIONS: --try-parsedates Automatically try to parse dates/datetimes and time. If parsing fails, columns remain as strings. Note that if dates are not well-formatted in your CSV, @@ -147,6 +147,9 @@ sqlp options: will be skipped. If not set, the query will fail. Only use this when debugging queries, as polars does batched parsing and will skip the entire batch where the error occurred. + --rnull-values The comma-delimited list of strings to consider as null values + when READING CSV files. + (default: ) CSV OUTPUT FORMAT ONLY: --datetime-format The datetime format to use writing datetimes. @@ -156,9 +159,6 @@ sqlp options: --time-format The time format to use writing times. --float-precision The number of digits of precision to use when writing floats. (default: 6) - --rnull-values The comma-delimited list of strings to consider as null values - when READING CSV files. - (default: ) --wnull-value The string to use when WRITING null values. (default: )