Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Trino 447 release notes #21873

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/src/main/sphinx/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
```{toctree}
:maxdepth: 1

release/release-447
release/release-446
release/release-445
release/release-444
Expand Down
52 changes: 52 additions & 0 deletions docs/src/main/sphinx/release/release-447.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Release 447 (8 May 2024)

## General

* Add support for [](/sql/show-create-function). ({issue}`21809`)
* Add support for the {func}`bitwise_xor_agg` aggregation function. ({issue}`21436`)
* {{breaking}} Require JDK 22 to run Trino. ({issue}`20980`)
* Improve performance of `ORDER BY` queries with `LIMIT` on large data sets. ({issue}`21761`)
* Improve performance of queries containing the {func}`rank` or
{func}`row_number` window functions. ({issue}`21639`)
* Improve performance of correlated queries with `EXISTS`. ({issue}`21422`)
* Fix potential failure for expressions involving `try_cast(parse_json(...))`. ({issue}`21877`)

## CLI

* Fix incorrect error location markers for SQL routines causing CLI to print
exceptions. ({issue}`21357`)

## Delta Lake connector

* Add support for concurrent `DELETE` and `TRUNCATE` queries. ({issue}`18521`)
* Fix under-accounting of memory usage when writing strings to Parquet files. ({issue}`21745`)
colebow marked this conversation as resolved.
Show resolved Hide resolved

## Hive connector

* Add support for metastore caching on tables that have not been analyzed, which
can be enabled with the `hive.metastore-cache.cache-missing-stats` and
`hive.metastore-cache.cache-missing-partitions` configuration properties. ({issue}`21822`)
* Fix under-accounting of memory usage when writing strings to Parquet files. ({issue}`21745`)
* Fix failure when translating Hive views that contain `EXISTS` clauses. ({issue}`21829`)

## Hudi connector

* Fix under-accounting of memory usage when writing strings to Parquet files. ({issue}`21745`)

## Iceberg connector

* Fix under-accounting of memory usage when writing strings to Parquet files. ({issue}`21745`)

## Phoenix connector

* {{breaking}} Remove support for Phoenix versions 5.1.x and earlier. ({issue}`21569`)

## Pinot connector

* Add support for specifying an explicit broker URL with the `pinot.broker-url`
configuration property. ({issue}`17791`)

## Redshift connector

* {{breaking}} Remove deprecated legacy type mapping and the associated
`redshift.use-legacy-type-mapping` configuration property. ({issue}`21855`)
Loading