File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
parquet/src/arrow/arrow_writer Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -409,6 +409,7 @@ impl<W: Write + Send> ArrowWriter<W> {
409409 }
410410
411411 /// Create a new row group writer and return its column writers.
412+ #[ deprecated( since = "56.2.0" , note = "Use into_serialized_writer instead" ) ]
412413 pub fn get_column_writers ( & mut self ) -> Result < Vec < ArrowColumnWriter > > {
413414 self . flush ( ) ?;
414415 let in_progress = self
@@ -418,6 +419,7 @@ impl<W: Write + Send> ArrowWriter<W> {
418419 }
419420
420421 /// Append the given column chunks to the file as a new row group.
422+ #[ deprecated( since = "56.2.0" , note = "Use into_serialized_writer instead" ) ]
421423 pub fn append_row_group ( & mut self , chunks : Vec < ArrowColumnChunk > ) -> Result < ( ) > {
422424 let mut row_group_writer = self . writer . next_row_group ( ) ?;
423425 for chunk in chunks {
You can’t perform that action at this time.
0 commit comments