You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A bug exists in the generated CSV when specifying comma-separated fields on CLI as the first column is the comma-joined list of fields.
To be clear, if you specify --fields a,b,c you will have the following CSV:
"a,b,c",a,b,c
empty,whatever,whatever,whatever
But when you specify --fields a b c the CSV will be good:
a,b,c
whatever,whatever,whatever
Could you then improve the parsing ?
Cheers !
The text was updated successfully, but these errors were encountered:
Hello @taraslayshchuk,
A bug exists in the generated CSV when specifying comma-separated fields on CLI as the first column is the comma-joined list of fields.
To be clear, if you specify
--fields a,b,c
you will have the following CSV:But when you specify
--fields a b c
the CSV will be good:Could you then improve the parsing ?
Cheers !
The text was updated successfully, but these errors were encountered: