andygrove commented on code in PR #8627:
URL: https://github.com/apache/arrow-datafusion/pull/8627#discussion_r1435636186


##########
datafusion/proto/proto/datafusion.proto:
##########
@@ -1206,13 +1206,28 @@ message PartitionColumn {
 message FileTypeWriterOptions {
   oneof FileType {
     JsonWriterOptions json_options = 1;
+    ParquetWriterOptions parquet_options = 2;
   }
 }
 
 message JsonWriterOptions {
   CompressionTypeVariant compression = 1;
 }
 
+message ParquetWriterOptions {
+    WriterProperties writer_properties = 1;
+}
+
+message WriterProperties {
+  int32 data_page_size_limit = 1;

Review Comment:
   Actually, I misread / misunderstood your comment. I changed to u32 on the 
basis that these should not need to support negative numbers, but I may need to 
research this more to make sure that is the case.



-- 
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