version: v1.6.2
if use struct to generate SchemaHandler,Parquet_go_rootcan not set info because it can not set tag
like this struct
type Data struct {
Value string `parquet:"name=data, type=BYTE_ARRAY,convertedtype=UTF8, encoding=PLAIN_DICTIONARY, omitstats=true"`
Timestamp int64 `parquet:"name=timestamp, type=INT64, omitstats=true"`
}
I set all fieldsomitstats=true,but the SchemaHandler's first item is the struct and it's omitstats is false.
that will panic when call Flush(),because nullCount is nil
version: v1.6.2
if use struct to generate SchemaHandler,Parquet_go_root
can not setinfo
because it can not settag
like this struct
I set all fields
omitstats=true
,but the SchemaHandler's first item is the struct and it'somitstats
isfalse
. that will panic when callFlush()
,becausenullCount
is nilThe following is panic information