kszucs commented on code in PR #45360:
URL: https://github.com/apache/arrow/pull/45360#discussion_r1973227681


##########
python/pyarrow/_parquet.pyx:
##########
@@ -1996,6 +2001,18 @@ cdef shared_ptr[WriterProperties] 
_create_writer_properties(
     if dictionary_pagesize_limit is not None:
         props.dictionary_pagesize_limit(dictionary_pagesize_limit)
 
+    # content defined chunking
+    if cdc is False:
+        props.disable_cdc()
+    elif cdc is True:
+        props.enable_cdc()

Review Comment:
   Updating, `cdc` argument used to be either bool or tuple.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to