Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-45282: [Python][Parquet] Remove unused readonly properties of ParquetWriter #45281

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions python/pyarrow/_parquet.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2126,28 +2126,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,
Expand Down
Loading