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 028f0ab commit b401e1aCopy full SHA for b401e1a
src/context.rs
@@ -214,6 +214,12 @@ impl PySessionConfig {
214
Self::from(self.config.clone().with_repartition_file_min_size(size))
215
}
216
217
+ fn with_dataframe_display_config(&self, display_config: DataframeDisplayConfig) -> Self {
218
+ let mut config = self.clone();
219
+ config.display_config = display_config;
220
+ config
221
+ }
222
+
223
fn with_parquet_pruning(&self, enabled: bool) -> Self {
224
Self::from(self.config.clone().with_parquet_pruning(enabled))
225
0 commit comments