You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Metadata is now represented by `FieldMetadata`
65
+
### Metadata on Arrow Types is now represented by `FieldMetadata`
83
66
84
67
Metadata from the Arrow `Field` is now stored using the `FieldMetadata`
85
68
structure. In prior versions it was stored as both a `HashMap<String, String>`
@@ -137,6 +120,25 @@ SET datafusion.execution.spill_compression = 'zstd';
137
120
138
121
For more details about this configuration option, including performance trade-offs between different compression codecs, see the [Configuration Settings](../user-guide/configs.md) documentation.
139
122
123
+
## DataFusion `48.0.1`
124
+
125
+
### `datafusion.execution.collect_statistics` now defaults to `true`
126
+
127
+
The default value of the `datafusion.execution.collect_statistics` configuration
128
+
setting is now true. This change impacts users that use that value directly and relied
129
+
on its default value being `false`.
130
+
131
+
This change also restores the default behavior of `ListingTable` to its previous. If you use it directly
132
+
you can maintain the current behavior by overriding the default value in your code.
0 commit comments