This is an automated email from the ASF dual-hosted git repository.
alenka pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 40c5300edc GH-45282: [Python][Parquet] Remove unused readonly
properties of ParquetWriter (#45281)
40c5300edc is described below
commit 40c5300edc6ccc0ea4a9131722628ac6203ce806
Author: Krisztián Szűcs <[email protected]>
AuthorDate: Mon Mar 24 08:26:09 2025 +0100
GH-45282: [Python][Parquet] Remove unused readonly properties of
ParquetWriter (#45281)
### Rationale for this change
### What changes are included in this PR?
Remove the unused ParquetWriter properties.
### Are these changes tested?
They haven't been used anywhere.
### Are there any user-facing changes?
No.
* GitHub Issue: #45282
Authored-by: Krisztian Szucs <[email protected]>
Signed-off-by: AlenkaF <[email protected]>
---
python/pyarrow/_parquet.pyx | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/python/pyarrow/_parquet.pyx b/python/pyarrow/_parquet.pyx
index ecc4e57091..6bc77ed795 100644
--- a/python/pyarrow/_parquet.pyx
+++ b/python/pyarrow/_parquet.pyx
@@ -2140,28 +2140,6 @@ cdef class ParquetWriter(_Weakrefable):
shared_ptr[COutputStream] sink
bint own_sink
- cdef readonly:
- object use_dictionary
- object use_deprecated_int96_timestamps
- object use_byte_stream_split
- object column_encoding
- object coerce_timestamps
- object allow_truncated_timestamps
- object compression
- object compression_level
- object data_page_version
- object use_compliant_nested_type
- object version
- object write_statistics
- object writer_engine_version
- int row_group_size
- int64_t data_page_size
- FileEncryptionProperties encryption_properties
- int64_t write_batch_size
- int64_t dictionary_pagesize_limit
- object store_schema
- object store_decimal_as_integer
-
def __cinit__(self, where, Schema schema not None, use_dictionary=None,
compression=None, version=None,
write_statistics=None,