Skip to content

Commit 810e908

Browse files
authored
Minor: Add github link to code that was upstreamed (#12660)
1 parent 3892499 commit 810e908

File tree

1 file changed

+3
-0
lines changed
  • datafusion/common/src/utils

1 file changed

+3
-0
lines changed

datafusion/common/src/utils/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,9 @@ pub(crate) fn parse_identifiers(s: &str) -> Result<Vec<Ident>> {
291291
}
292292

293293
/// 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>
294297
pub fn take_arrays(arrays: &[ArrayRef], indices: &dyn Array) -> Result<Vec<ArrayRef>> {
295298
arrays
296299
.iter()

0 commit comments

Comments
 (0)