JuliaIO / Parquet.jl

Julia implementation of Parquet columnar file format reader
Other
116 stars 32 forks source link

add example how to use colcursor #76

Closed xiaodaigh closed 4 years ago

tanmaykm commented 4 years ago

You could see an example of using ColCursor in the RecordCursor implementation. It may not make sense to use it on nested schemas, but may be useful with flat schemas.

xiaodaigh commented 4 years ago

an example of using ColCursor in the RecordCursor implementation

kinda tough to get. anyway i will close it.

Doesn't seem to be user-facing type of functions.

One thing I can't answer with Parquet.jl is that how do I read a full column? It's very hard to figure it out despite parquet being a columnar-format. The examples in the readme seems to be for reading it row-by-row.