demetribu commented on issue #13237: URL: https://github.com/apache/datafusion/issues/13237#issuecomment-2469065968
``` #[test] fn test_array_take_sequential() { use arrow_array::{Int64Array, ArrayRef}; use std::sync::Arc; let int_values: Vec<i64> = (1..=100000).collect(); let int64_array = Int64Array::from(int_values); let list_array = Arc::new(int64_array) as ArrayRef; // Use sequential indices from 0 to 99,999 let indices = Int64Array::from((0..100000).collect::<Vec<i64>>()); let result = repeat_arrs_from_indices(&[list_array], &indices); println!("{:?}", result); assert_eq!(1, 1); } ``` finished in 0.00s -- 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