We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3892499 commit 810e908Copy full SHA for 810e908
datafusion/common/src/utils/mod.rs
@@ -291,6 +291,9 @@ pub(crate) fn parse_identifiers(s: &str) -> Result<Vec<Ident>> {
291
}
292
293
/// Construct a new [`Vec`] of [`ArrayRef`] from the rows of the `arrays` at the `indices`.
294
+///
295
+/// TODO: use implementation in arrow-rs when available:
296
+/// <https://github.com/apache/arrow-rs/pull/6475>
297
pub fn take_arrays(arrays: &[ArrayRef], indices: &dyn Array) -> Result<Vec<ArrayRef>> {
298
arrays
299
.iter()
0 commit comments