We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
When tried to write a data.frame that has Posixct columns where some values are NA, write_parquet throws the following error:
NA
write_parquet
> write_parquet(df, "my.parquet") Error in write_parquet(df, "my.parquet") : Cannot write unknown column type
The minimal example:
df <- data.frame( a = c(1,2), t = c(Sys.time(), NA) ) write_parquet(df, "my.parquet")
The only solution seems to convert them to numeric... which causes a cascade of problems.
Thank you for your attention.
Regards
The text was updated successfully, but these errors were encountered:
This works fine for me with the dev version of nanoparquet.
Sorry, something went wrong.
Thanks for your prompt response.
I'm using latest stable (0.3.1), on Windows. Any schedule for next stable version (that hopefully solve this issue)?
AC
I can confirm both the failure with 0.3.1 and the subsequent success with 0.3.1.9000.
0.3.1
0.3.1.9000
No branches or pull requests
Hi,
When tried to write a data.frame that has Posixct columns where some values are
NA
,write_parquet
throws the following error:The minimal example:
The only solution seems to convert them to numeric... which causes a cascade of problems.
Thank you for your attention.
Regards
The text was updated successfully, but these errors were encountered: