Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-7731

[C++][Parquet] Support LargeListArray

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Duplicate
    • None
    • 0.17.1
    • C++

    Description

      For now it's not possible to write a pyarrow.Table containing a LargeListArray in parquet. The lines

      from pyarrow import parquet
      import pyarrow as pa
      
      indices = [1, 2, 3]
      indptr = [0, 1, 2, 3]
      q = pa.lib.LargeListArray.from_arrays(indptr, indices) 
      table = pa.Table.from_arrays([q], names=['no']) 
      
      parquet.write_table(table, '/test')

      yields the error 

      ArrowNotImplementedError: Unhandled type for Arrow to Parquet schema conversion: large_list<item: int64>
      
      

       

      Attachments

        Issue Links

          Activity

            People

              emkornfield@gmail.com Micah Kornfield
              Marc9595 marc abboud
              Votes:
              0 Vote for this issue
              Watchers:
              6 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: