-
Notifications
You must be signed in to change notification settings - Fork 27
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
method ambiguity when writing columns with eltype Union{DateTime, Missing}
#70
Comments
ExpandingMan
pushed a commit
to ExpandingMan/Feather.jl
that referenced
this issue
Jan 10, 2018
This was referenced Jan 10, 2018
quinnj
pushed a commit
that referenced
this issue
Apr 10, 2018
* Fixed #70. * Initial cleanup. * Split into multiple files. * Moved Arrow.jl to its own directory. * Fixed method ambiguity in getmetadata. * Initial implementation with arrow backend. * Fixed errors; now works for basic bits types and strings. * Now correctly implement datetime. * Rewrote column constructors to be reasonable and sane. * Dict encoding now working. * Started writing sink. * Reads now work with new version of Arrow. * Continuing to work on sinks. * Everything works except dictionary encoding, which is currently completely fucked on write side. * Most column types now supported. * Most functionality now properly implemented. * Finally supports bools! * Trying to fixed DictEncoding but it's still fucked up. * Finally completely fixed DictEncoding. * Fixed unit testing. * Removed old reference files. * Added some materialize methods. * Removed old comment about DictEncoding being fucked up. * Removed old reference file fileio.jl * Removed spurious comment. * Removed spurious comment. * Tried to fix appveyor yaml. * Tried to fix appveyor yaml. * DictEncoding now works for non Int32, cleaned up some things. * Added a materialize method for a DataFrame. * Updated for 0.7. * Fixed scary metadata bug. * Replaced uninitialized with undef. * Fixed file potential file validation bug. * Updated for new Arrow locator interface. * Cleaned up Source functions a bit. * Started adding extra tests. * Removed references to pre 0.6 in README. * Added more unit tests. * Removed explicit Arrow clone commands from travis and appveyor (now that it's registered). * Small fixes. * Fixed breaking test due to poor type inference on 0.6.
I am still having this problem when using Feather on a dataframe with columns of dates or of Bools. See the adapted version of the above example (which also fails for me) using the most recent version of using DataFrames
using Feather
df = DataFrame(A=Union{Bool,Missing}[true, false, missing],
B=rand(3),
C=rand(Int64,3))
Feather.write("test1.feather", df) gives
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See the following
gives
Investigating fixes...
The text was updated successfully, but these errors were encountered: