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
I ran into an issue where I could not find the minimum or maximum of an array of Arrow.Datestamp data, because these two functions require the existence of an isless function.
Expected behaviour: returns day1 value
Actual behaviour: Error message : ERROR: MethodError: no method matching minimum(::Datestamp, ::Datestamp)
Request: export isless, minimum, and maximum functions from Arrow.jl which can handle Datestamps
What I tried:
I tried making my own isless function:
On current master, the intention is that the Arrow time types should always be converted to Julia Dates types using convert. This is of course not ideal. Ultimately the Arrow time types are going to be done away with entirely, and instead the array will be a view of the underlying data which automatically returns Julia Dates types as elements.
I ran into an issue where I could not find the
minimum
ormaximum
of an array ofArrow.Datestamp
data, because these two functions require the existence of anisless
function.To reproduce:
Expected behaviour: returns
day1
valueActual behaviour: Error message :
ERROR: MethodError: no method matching minimum(::Datestamp, ::Datestamp)
Request: export
isless
,minimum
, andmaximum
functions fromArrow.jl
which can handleDatestamp
sWhat I tried:
I tried making my own
isless
function:However, this just leads to the new error message:
ERROR: MethodError: no method matching minimum(::Datestamp, ::Datestamp)
The text was updated successfully, but these errors were encountered: