-
Notifications
You must be signed in to change notification settings - Fork 821
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optionally Disable CSV Null Regex #6874
Comments
Yes that's it. The symbols to use to distinguish between empty string and nothing (NULL) in the CSV file is up to you. I'm looking forward to read your answer on this. Have a good day. Best regards, Anthony |
The request seems to be adding the ability to disable the null regex for the CSV reader, this seems like a relatively straightforward addition. In the meantime you could achieve the same by setting the null regex to something impossible, e.g. |
Oh, I didn't see that in the docs because I want looking at the csv sub package. Here it is https://docs.rs/arrow-csv/53.3.0/arrow_csv/reader/struct.ReaderBuilder.html#method.with_null_regex. |
I added the options to my arrow tools package in domoritz/arrow-tools#115. |
Hello,
I'm writing to you on the advice of Dominik Moritz who create a tool named CSV2Parquet. I contacted him first because I'm using his tool. And if I understood it well, he told me that his tool is using the "arrow-rs parser".
My issue is the following : when I'm transforming a CSV file into a Parquet file, I can't store an empty string into the Parquet file.
Having the ability to store a NULL value is good. But I would like to be able to store an empty string too.
Is this feature existing already, and if yes, what must I enter between two commas?
Or is it an evolution, and will you add it? If yes, do you have an rough idea about when? (month or year to come)
Best regards,
Anthony Piron
The text was updated successfully, but these errors were encountered: