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


##########
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:
   Now changed to u64 to better match usize. 



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