Skip to content

Commit ff9ada0

Browse files
committed
Deprecation of original API
1 parent c07f2ee commit ff9ada0

File tree

1 file changed

+2
-0
lines changed
  • parquet/src/arrow/arrow_writer

1 file changed

+2
-0
lines changed

parquet/src/arrow/arrow_writer/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)