Build a single element [`LargeListArray`] and wrap as [`ScalarValue::LargeList`]
(self)
| 476 | |
| 477 | /// Build a single element [`LargeListArray`] and wrap as [`ScalarValue::LargeList`] |
| 478 | pub fn build_large_list_scalar(self) -> ScalarValue { |
| 479 | ScalarValue::LargeList(Arc::new(self.build_large_list_array())) |
| 480 | } |
| 481 | |
| 482 | /// Build a single element [`FixedSizeListArray`] |
| 483 | pub fn build_fixed_size_list_array(self, list_size: usize) -> FixedSizeListArray { |
no test coverage detected