File tree 1 file changed +4
-4
lines changed
crates/iceberg/src/writer/base_writer
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -101,12 +101,12 @@ pub struct PositionDeleteWriter<B: FileWriterBuilder> {
101
101
102
102
#[ async_trait:: async_trait]
103
103
impl < B : FileWriterBuilder > IcebergWriter < Vec < PositionDeleteInput > > for PositionDeleteWriter < B > {
104
- async fn write ( & mut self , input : Vec < PositionDeleteInput > ) -> Result < ( ) > {
104
+ async fn write ( & mut self , inputs : Vec < PositionDeleteInput > ) -> Result < ( ) > {
105
105
let mut path_column_builder = StringBuilder :: new ( ) ;
106
106
let mut offset_column_builder = PrimitiveBuilder :: < Int64Type > :: new ( ) ;
107
- for input in input . into_iter ( ) {
108
- for offset in input . offsets {
109
- path_column_builder. append_value ( & input . path ) ;
107
+ for pd_input in inputs . into_iter ( ) {
108
+ for offset in pd_input . offsets {
109
+ path_column_builder. append_value ( & pd_input . path ) ;
110
110
offset_column_builder. append_value ( offset) ;
111
111
}
112
112
}
You can’t perform that action at this time.
0 commit comments