diff --git a/docs/src/main/sphinx/release.rst b/docs/src/main/sphinx/release.rst index 467c590c34a0..533543df4146 100644 --- a/docs/src/main/sphinx/release.rst +++ b/docs/src/main/sphinx/release.rst @@ -10,6 +10,7 @@ Release notes .. toctree:: :maxdepth: 1 + release/release-410 release/release-409 release/release-408 release/release-407 diff --git a/docs/src/main/sphinx/release/release-409.md b/docs/src/main/sphinx/release/release-409.md index 709b352584d6..387676768163 100644 --- a/docs/src/main/sphinx/release/release-409.md +++ b/docs/src/main/sphinx/release/release-409.md @@ -5,6 +5,7 @@ * Add support for dropping nested fields with a `DROP COLUMN` statement. ({issue}`15975`) * Add queue, analysis, planning, and execution time to the output of `EXPLAIN ANALYZE`. ({issue}`16329`) +* Add support for executing table functions with any number of table arguments. ({issue}`1839`) * Improve output of `EXPLAIN` queries to show statistics when a query contains aggregations. ({issue}`16201`) * Improve performance of queries with aggregations containing a `DISTINCT` diff --git a/docs/src/main/sphinx/release/release-410.md b/docs/src/main/sphinx/release/release-410.md new file mode 100644 index 000000000000..92bad2e8777a --- /dev/null +++ b/docs/src/main/sphinx/release/release-410.md @@ -0,0 +1,40 @@ +# Release 410 (8 Mar 2023) + +## General + +* Improve performance of certain queries with unions. ({issue}`16019`) +* Fix potential query failure when using an `ORDER BY` clause while spilling to + disk is enabled. ({issue}`16406`) +* Fix potential query failure when performing a `JOIN` with a comparison between + two different types. ({issue}`16444`) + +## Delta Lake connector + +* Fix query failure when reading Parquet files generated by Airbyte. ({issue}`16362`) + +## Google Sheets connector + +* Add support for the [`sheet` table function](google-sheets-sheet-function). ({issue}`12502`) + +## Hive connector + +* Add support for AWS Security Token Support with S3 Select. ({issue}`5947`) +* Fix incorrectly ignoring the `hive.timestamp-precision` configuration property + in Hive views. ({issue}`6295`) +* Fix query failure when reading Parquet files generated by Airbyte. ({issue}`16362`) +* Fix incorrect results when using a value with uppercase characters for the + `partition_projection_location_template` table property. ({issue}`16349`) + +## Hudi connector + +* Fix query failure when reading Parquet files generated by Airbyte. ({issue}`16362`) + +## Iceberg connector + +* Improve file pruning when generating Iceberg table statistics. ({issue}`16244`) +* Fix query failure when reading Parquet files generated by Airbyte. ({issue}`16362`) + +## Ignite connector + +* Add support for [aggregation pushdown](aggregation-pushdown) of the + `count(distinct)` function. ({issue}`16342`)