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 436 release notes #20166

Merged
merged 1 commit into from
Jan 11, 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
10 changes: 10 additions & 0 deletions docs/src/main/sphinx/release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release notes

(releases-2024)=
## 2024

```{toctree}
:maxdepth: 1

release/release-436
```


(releases-2023)=
## 2023

Expand Down
62 changes: 62 additions & 0 deletions docs/src/main/sphinx/release/release-436.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Release 436 (11 Jan 2024)

## General

* {{breaking}} Require JDK 21.0.1 to run Trino. ({issue}`20010`)
* Improve performance by not generating redundant predicates. ({issue}`16520`)
* Fix query failure when invoking the `json_table` function. ({issue}`20122`)
* Fix query hang when a [SQL routine](/routines) dereferences a row field. ({issue}`19997`).
* Fix potential incorrect results when using the {func}`ST_Centroid` and
{func}`ST_Buffer` functions for tiny geometries. ({issue}`20237`)

## Delta Lake connector

* Add support for querying files with corrupt or incorrect statistics, which can
be enabled with the `parquet_ignore_statistics` catalog session property. ({issue}`20228`)
* Improve performance of queries with selective joins on partition columns. ({issue}`20261`)
* Reduce the number of requests made to AWS Glue when listing tables, schemas,
or functions. ({issue}`20189`)
* Fix incorrect results when querying Parquet files containing column indexes
when the query has filters on multiple columns. ({issue}`20267`)

## ElasticSearch connector

* {{breaking}} Add support for ElasticSearch
[version 8](https://www.elastic.co/guide/en/elasticsearch/reference/current/es-release-notes.html),
and remove support for ElasticSearch version 6. ({issue}`20258`)
* Add [OpenSearch connector](/connector/opensearch). ({issue}`11377`)

## Hive connector

* Reduce the number of requests made to AWS Glue when listing tables, schemas,
or functions. ({issue}`20189`)
* Fix failure when reading certain Avro data with Union data types. ({issue}`20233`)
* Fix incorrect results when querying Parquet files containing column indexes
when the query has filters on multiple columns. ({issue}`20267`)

## Hudi connector

* Add support for enforcing that a filter on a partition key must be present in
the query. This can be enabled by with the
``hudi.query-partition-filter-required`` configuration property or the
``query_partition_filter_required`` catalog session property. ({issue}`19906`)
* Fix incorrect results when querying Parquet files containing column indexes
when the query has filters on multiple columns. ({issue}`20267`)

## Iceberg connector

* Add support for querying files with corrupt or incorrect statistics, which can
be enabled with the `parquet_ignore_statistics` catalog session property. ({issue}`20228`)
* Improve performance of queries with selective joins on partition columns. ({issue}`20212`)
* Reduce the number of requests made to AWS Glue when listing tables, schemas,
or functions. ({issue}`20189`)
* Fix potential loss of data when running multiple `INSERT` queries at the same
time. ({issue}`20093`)
* Fix incorrect results when providing a nonexistent namespace while listing
namespaces. ({issue}`19980`)
* Fix predicate pushdown not running for Parquet files when columns have been
renamed. ({issue}`18855`)

## SQL Server connector

* Fix incorrect results for `DATETIMEOFFSET` values before the year 1400. ({issue}`16559`)
Loading