We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf7acb commit 7e93511Copy full SHA for 7e93511
datafusion/src/physical_plan/parquet.rs
@@ -153,8 +153,11 @@ pub trait MetadataCacheFactory: Sync + Send {
153
time_to_idle: Duration,
154
) -> Arc<dyn ParquetMetadataCache>;
155
/// Modifies and builds writer properties.
156
- fn build_writer_props(&self, builder: WriterPropertiesBuilder) -> WriterProperties {
157
- builder.build()
+ fn build_writer_props(
+ &self,
158
+ builder: WriterPropertiesBuilder,
159
+ ) -> Result<WriterProperties> {
160
+ Ok(builder.build())
161
}
162
163
0 commit comments