Jefffrey opened a new issue, #9344:
URL: https://github.com/apache/arrow-rs/issues/9344

   **Is your feature request related to a problem or challenge? Please describe 
what you are trying to do.**
   <!--
   A clear and concise description of what the problem is. Ex. I'm always 
frustrated when [...] 
   (This section helps Arrow developers understand the context and *why* for 
this feature, in addition to  the *what*)
   -->
   
   Support writing/reading listview columns in parquet
   
   **Describe the solution you'd like**
   <!--
   A clear and concise description of what you want to happen.
   -->
   
   Example unit test that should pass:
   
   ```rust
   #[test]
   fn arrow_writer_list_view() {
       let list_field = Arc::new(Field::new_list_field(DataType::Int32, false));
       let schema = Schema::new(vec![Field::new(
           "a",
           DataType::ListView(list_field.clone()),
           true,
       )]);
   
       //  [[1], [2, 3], null, [4, 5, 6], [7, 8, 9, 10]]
       let a = ListViewArray::new(
           list_field,
           vec![0, 1, 0, 3, 6].into(),
           vec![1, 2, 0, 3, 4].into(),
           Arc::new(Int32Array::from(vec![1, 2, 3, 4, 5, 6, 7, 8, 9, 10])),
           Some(vec![true, true, false, true, true].into()),
       );
   
       let batch = RecordBatch::try_new(Arc::new(schema), 
vec![Arc::new(a)]).unwrap();
   
       roundtrip(batch, None);
   }
   ```
   
   **Describe alternatives you've considered**
   <!--
   A clear and concise description of any alternative solutions or features 
you've considered.
   -->
   
   **Additional context**
   <!--
   Add any other context or screenshots about the feature request here.
   -->
   


-- 
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