John Kerl
John Kerl
Yes, RFC-4180 CSV supports newline within double-quoted cells: https://miller.readthedocs.io/en/6.13.0/file-formats/#csvtsvasvusvetc
Note that normally `\r` and/or `\n` are not within cells, they're delimiters _between_ them. It's a bug that ``` echo "a=lorem" | mlr --ocsv sub -a "r" "\n" ``` produces...
I'll use this issue -- thanks @aborruso !
Correct, `filter` acts as `put` and the difference is just whether the final statement is used as a boolean to decide whether or not to forward the curent record https://miller.readthedocs.io/en/6.13.0/reference-dsl/#differences-between-put-and-filter
I guess I can assert that the final `filter` expression _does_ evaluate to `bool` and abort the program if it doesn't -- ?
> What I expected in a case like this was to have the same input content in the output, because the filter cannot filter anything out. Or for mlr to...
@spmundi yeah, I guess Miller has always been implicitly getting the timezone data from the OS -- _if_ it's present. I like your: ``` import _ "time/tzdata" ``` -- I'll...
Does anyone know why #2699 triggers only on MacOS? We see this only on MacOS, not Linux, and I'd like to understand what's Mac-specific here ...
@ypatia my understanding was that query v3 had other issues. Let me check my notes and get back to you.
> was just wondering if that's the same use case/scenario. @ypatia SC 48707 reports a problem with ingesting (writing) data with ``` "rest.use_refactored_array_open": True, "rest.use_refactored_array_open_and_query_submit": True, ``` The issue on...