JuliaData / Feather.jl

Read and write feather files in pure Julia
https://juliadata.github.io/Feather.jl/stable
Other
109 stars 27 forks source link

Error when materializing feather file #97

Closed cstjean closed 6 years ago

cstjean commented 6 years ago

materialize(filename) used to work on version 0.4.0

julia> df = Feather.materialize(Feather.read(fname));   # works fine

julia> df = Feather.materialize(fname);
ERROR: MethodError: no method matching colname(::Feather.Source{NamedTuple{...}})
Closest candidates are:
  colname(::Feather.Source{NamedTuple{names,T}}, ::Symbol) where {names, T} at /home/cst-jean/.julia/packages/Feather/92Jkl/src/source.jl:47
  colname(::Feather.Source, ::String) at /home/cst-jean/.julia/packages/Feather/92Jkl/src/source.jl:48
  colname(::Feather.Source, ::Symbol) at /home/cst-jean/.julia/packages/Feather/92Jkl/src/source.jl:49
Stacktrace:
 [1] (::getfield(Feather, Symbol("##8#9")){Feather.Source{NamedTuple{(...) at /home/cst-jean/.julia/packages/Feather/92Jkl/src/source.jl:105
 [6] materialize(::String) at /home/cst-jean/.julia/packages/Feather/92Jkl/src/source.jl:106
 [7] top-level scope at none:0
quinnj commented 6 years ago

Fix incoming.

jangorecki commented 5 years ago

any idea when fixed version will be released?

ExpandingMan commented 5 years ago

@quinnj ok to make a patch release?

quinnj commented 5 years ago

Sounds good to me; do you want to do it or me?

ExpandingMan commented 5 years ago

Done!