matteosdocsity commented on issue #43908:
URL: https://github.com/apache/arrow/issues/43908#issuecomment-2333722404

   @jorisvandenbossche I tested as you reported 
[here](https://github.com/apache/arrow/issues/43908#issuecomment-2328294222) , 
and via Terraform forcing the BigQuery table schema to have the column to be a 
record of record of BIGNUMERIC **element** instead of item:
   ```terraform
        {
           "name": "sessions_array",
           "type": "RECORD",
           "mode": "NULLABLE",
           "fields": [
             {
               "name": "list",
               "type": "RECORD",
               "mode": "REPEATED",
               "fields": [
                 {
                   "name": "element",
                   "type": "BIGNUMERIC",
                   "mode": "NULLABLE"
                 }
               ]
             }
           ]
         }
   
   ```
   In combination with `use_compliant_nested_type=True` the BigQuery reads 
works. 
   In consideration of the [parquet 
spec](https://github.com/apache/parquet-format/blob/master/LogicalTypes.md#lists)
 I'm considering to move my BigQuery table to this schema.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to