mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-24 16:38:57 +00:00
Restore --quote-all for CSV output (#1084)
* Restore --quote-all flag for CSV output * make dev: for doc-build artifacts
This commit is contained in:
parent
a8cc3032dc
commit
abf58f4bb5
9 changed files with 24 additions and 17 deletions
|
|
@ -334,6 +334,7 @@ CSV/TSV-ONLY FLAGS
|
|||
--no-implicit-csv-header -l
|
||||
your-join-in-with-header.csv ...
|
||||
your-headerless.csv`.
|
||||
--quote-all Force double-quoting of CSV fields.
|
||||
-N Keystroke-saver for `--implicit-csv-header
|
||||
--headerless-csv-output`.
|
||||
|
||||
|
|
@ -477,8 +478,6 @@ LEGACY FLAGS
|
|||
--no-mmap Miller no longer uses memory-mapping to access data
|
||||
files.
|
||||
--ojsonx The `--jvstack` flag is now default true in Miller 6.
|
||||
--quote-all Ignored as of version 6. Types are inferred/retained
|
||||
through the processing flow now.
|
||||
--quote-minimal Ignored as of version 6. Types are inferred/retained
|
||||
through the processing flow now.
|
||||
--quote-none Ignored as of version 6. Types are inferred/retained
|
||||
|
|
|
|||
|
|
@ -313,6 +313,7 @@ CSV/TSV-ONLY FLAGS
|
|||
--no-implicit-csv-header -l
|
||||
your-join-in-with-header.csv ...
|
||||
your-headerless.csv`.
|
||||
--quote-all Force double-quoting of CSV fields.
|
||||
-N Keystroke-saver for `--implicit-csv-header
|
||||
--headerless-csv-output`.
|
||||
|
||||
|
|
@ -456,8 +457,6 @@ LEGACY FLAGS
|
|||
--no-mmap Miller no longer uses memory-mapping to access data
|
||||
files.
|
||||
--ojsonx The `--jvstack` flag is now default true in Miller 6.
|
||||
--quote-all Ignored as of version 6. Types are inferred/retained
|
||||
through the processing flow now.
|
||||
--quote-minimal Ignored as of version 6. Types are inferred/retained
|
||||
through the processing flow now.
|
||||
--quote-none Ignored as of version 6. Types are inferred/retained
|
||||
|
|
|
|||
|
|
@ -121,6 +121,7 @@ These are flags which are applicable to CSV format.
|
|||
* `--implicit-csv-header or --headerless-csv-input or --hi or --implicit-tsv-header`: Use 1,2,3,... as field labels, rather than from line 1 of input files. Tip: combine with `label` to recreate missing headers.
|
||||
* `--lazy-quotes`: Accepts quotes appearing in unquoted fields, and non-doubled quotes appearing in quoted fields.
|
||||
* `--no-implicit-csv-header or --no-implicit-tsv-header`: Opposite of `--implicit-csv-header`. This is the default anyway -- the main use is for the flags to `mlr join` if you have main file(s) which are headerless but you want to join in on a file which does have a CSV/TSV header. Then you could use `mlr --csv --implicit-csv-header join --no-implicit-csv-header -l your-join-in-with-header.csv ... your-headerless.csv`.
|
||||
* `--quote-all`: Force double-quoting of CSV fields.
|
||||
* `-N`: Keystroke-saver for `--implicit-csv-header --headerless-csv-output`.
|
||||
|
||||
## File-format flags
|
||||
|
|
@ -249,7 +250,6 @@ They are accepted as no-op flags in order to keep old scripts from breaking.
|
|||
* `--mmap`: Miller no longer uses memory-mapping to access data files.
|
||||
* `--no-mmap`: Miller no longer uses memory-mapping to access data files.
|
||||
* `--ojsonx`: The `--jvstack` flag is now default true in Miller 6.
|
||||
* `--quote-all`: Ignored as of version 6. Types are inferred/retained through the processing flow now.
|
||||
* `--quote-minimal`: Ignored as of version 6. Types are inferred/retained through the processing flow now.
|
||||
* `--quote-none`: Ignored as of version 6. Types are inferred/retained through the processing flow now.
|
||||
* `--quote-numeric`: Ignored as of version 6. Types are inferred/retained through the processing flow now.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue