Upgrade Guides
DataFusion 48.0.1
登录后可跨设备保存划线和私人笔记登录
Upgrade Guides#
DataFusion 48.0.1#
datafusion.execution.collect_statistics now defaults to true#
The default value of the datafusion.execution.collect_statistics configuration setting is now true. This change impacts users that use that value directly and relied on its default value being false.
This change also restores the default behavior of ListingTable to its previous. If you use it directly you can maintain the current behavior by overriding the default value in your code.
ListingOptions::new(Arc::new(ParquetFormat::default()))
.with_collect_stat(false)
// other options评论
登录后参与评论
正在加载评论…
KnowForge