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> {
409
409
}
410
410
411
411
/// Create a new row group writer and return its column writers.
412
+ #[ deprecated( since = "56.2.0" , note = "Use into_serialized_writer instead" ) ]
412
413
pub fn get_column_writers ( & mut self ) -> Result < Vec < ArrowColumnWriter > > {
413
414
self . flush ( ) ?;
414
415
let in_progress = self
@@ -418,6 +419,7 @@ impl<W: Write + Send> ArrowWriter<W> {
418
419
}
419
420
420
421
/// 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" ) ]
421
423
pub fn append_row_group ( & mut self , chunks : Vec < ArrowColumnChunk > ) -> Result < ( ) > {
422
424
let mut row_group_writer = self . writer . next_row_group ( ) ?;
423
425
for chunk in chunks {
You can’t perform that action at this time.
0 commit comments