@@ -22,8 +22,10 @@ use crate::{
2222 execution:: {
2323 shuffle:: {
2424 codec:: { Checksum , ShuffleBlockWriter } ,
25- list:: { append_list_element, SparkUnsafeArray } ,
26- map:: { append_map_elements, get_map_key_value_fields, SparkUnsafeMap } ,
25+ spark_unsafe:: {
26+ list:: { append_list_element, SparkUnsafeArray } ,
27+ map:: { append_map_elements, get_map_key_value_fields, SparkUnsafeMap } ,
28+ } ,
2729 } ,
2830 utils:: bytes_to_i128,
2931 } ,
@@ -293,7 +295,7 @@ pub(crate) use downcast_builder_ref;
293295/// `struct_builder.append` is called before/after calling this function to append the null buffer
294296/// of the struct array.
295297#[ allow( clippy:: redundant_closure_call) ]
296- pub ( crate ) fn append_field (
298+ pub ( super ) fn append_field (
297299 dt : & DataType ,
298300 struct_builder : & mut StructBuilder ,
299301 row : & SparkUnsafeRow ,
@@ -441,7 +443,7 @@ pub(crate) fn append_field(
441443
442444/// Appends column of top rows to the given array builder.
443445#[ allow( clippy:: redundant_closure_call, clippy:: too_many_arguments) ]
444- pub ( crate ) fn append_columns (
446+ fn append_columns (
445447 row_addresses_ptr : * mut jlong ,
446448 row_sizes_ptr : * mut jint ,
447449 row_start : usize ,
0 commit comments