Closed CeciliaCoelho closed 3 years ago
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 https://github.com/xitongsys/parquet-go/issues/294.
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, A2, etc it works perfectly using "Schema.A"+strconv.Itoa(1). Is this a bug?