zhuqi-lucas commented on issue #16838:
URL: https://github.com/apache/datafusion/issues/16838#issuecomment-3112086083

   Updated, i reproduced it now with a simple list cases, i will further 
investigate:
   
   ```rust
     let v1 = FixedSizeListArray::try_new(
           Arc::new(Field::new_list_field(DataType::Int32, true)),
           1024,
           Arc::new(create_primitive_array::<Int32Type>(1024 * 1024, 0.0)),
           None,
       )
       .unwrap();
       let v2 = FixedSizeListArray::try_new(
           Arc::new(Field::new_list_field(DataType::Int32, true)),
           1024,
           Arc::new(create_primitive_array::<Int32Type>(1024 * 1024, 0.0)),
           None,
       )
       .unwrap();
       
       c.bench_function("concat fixed size lists", |b| {
           b.iter(|| bench_concat(&v1, &v2))
       });
   
   fn bench_concat(v1: &dyn Array, v2: &dyn Array) {
       hint::black_box(concat(&[v1, v2]).unwrap());
   }
   ```
   
   


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to