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
If I have a column names 1_A, 2_A, etc the Schema ("Schema."+strconv.Itoa(1)+"A") doesn't work for some reason but if I change the order of the name components to A_1, A_2, etc it works perfectly using "Schema.A_"+strconv.Itoa(1). Is this a bug?
The text was updated successfully, but these errors were encountered:
This is by design, schema that does not start with alphabetic characters will be prefixed by PARGO_PREFIX, it's mentioned in the README, you can also reference to #294.
As part of exploring xitongsys#266, it was identified that the code around
deserializing Parquet values into Go values should be refactored to make
supporting other types like `time.Time` possible. This is the first
change which refactors the monolithic `assignValue()` function into an
`AssignValue()` function implemented on each Parquet type.
If I have a column names 1_A, 2_A, etc the Schema ("Schema."+strconv.Itoa(1)+"A") doesn't work for some reason but if I change the order of the name components to A_1, A_2, etc it works perfectly using "Schema.A_"+strconv.Itoa(1). Is this a bug?
The text was updated successfully, but these errors were encountered: