Skip to content

Commit f287bc8

Browse files
committed
remove argument usage from c_glib and pyarrow
1 parent 9234e16 commit f287bc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

c_glib/parquet-glib/arrow-file-writer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ gparquet_arrow_file_writer_new_row_group(GParquetArrowFileWriter *writer,
590590
{
591591
auto parquet_arrow_file_writer = gparquet_arrow_file_writer_get_raw(writer);
592592
return garrow::check(error,
593-
parquet_arrow_file_writer->NewRowGroup(chunk_size),
593+
parquet_arrow_file_writer->NewRowGroup(),
594594
"[parquet][arrow][file-writer][new-row-group]");
595595
}
596596

python/pyarrow/_parquet.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ cdef extern from "parquet/arrow/writer.h" namespace "parquet::arrow" nogil:
556556
const shared_ptr[ArrowWriterProperties]& arrow_properties)
557557

558558
CStatus WriteTable(const CTable& table, int64_t chunk_size)
559-
CStatus NewRowGroup(int64_t chunk_size)
559+
CStatus NewRowGroup()
560560
CStatus Close()
561561
CStatus AddKeyValueMetadata(const shared_ptr[const CKeyValueMetadata]& key_value_metadata)
562562

0 commit comments

Comments
 (0)