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 413 release notes #16997

Merged
merged 1 commit into from
Apr 12, 2023
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.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Release notes
.. toctree::
:maxdepth: 1

release/release-413
release/release-412
release/release-411
release/release-410
Expand Down
55 changes: 55 additions & 0 deletions docs/src/main/sphinx/release/release-413.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# Release 413 (12 Apr 2023)

## General

* Improve performance of queries involving window operations or
[row pattern recognition](/sql/pattern-recognition-in-window) on small
partitions. ({issue}`16748`)
* Improve performance of queries with the {func}`row_number` and {func}`rank`
window functions. ({issue}`16753`)
* Fix potential failure when cancelling a query. ({issue}`16960`)

## Delta Lake connector

* Add support for nested `timestamp with time zone` values in
[structural data types](structural-data-types). ({issue}`16826`)
* Disallow using `_change_type`, `_commit_version`, and `_commit_timestamp` as
column names when creating a table or adding a column with
[change data feed](https://docs.delta.io/2.0.0/delta-change-data-feed.html). ({issue}`16913`)
* Disallow enabling change data feed when the table contains
`_change_type`, `_commit_version` and `_commit_timestamp` columns. ({issue}`16913`)
* Fix incorrect results when reading `INT32` values without a decimal logical
annotation in Parquet files. ({issue}`16938`)

## Hive connector

* Fix incorrect results when reading `INT32` values without a decimal logical
annotation in Parquet files. ({issue}`16938`)
* Fix incorrect results when the file path contains hidden characters. ({issue}`16386`)
colebow marked this conversation as resolved.
Show resolved Hide resolved

## Hudi connector

* Fix incorrect results when reading `INT32` values without a decimal logical
annotation in Parquet files. ({issue}`16938`)

## Iceberg connector

* Fix incorrect results when reading `INT32` values without a decimal logical
annotation in Parquet files. ({issue}`16938`)
* Fix failure when creating a schema with a username containing uppercase
characters in the Iceberg Glue catalog. ({issue}`16116`)

## Oracle connector

* Add support for [table comments](/sql/comment) and creating tables with
colebow marked this conversation as resolved.
Show resolved Hide resolved
comments. ({issue}`16898`)

## Phoenix connector

* Add support for {doc}`/sql/merge`. ({issue}`16661`)
colebow marked this conversation as resolved.
Show resolved Hide resolved

## SPI

* Deprecate the `getSchemaProperties()` and `getSchemaOwner()` methods in
`ConnectorMetadata` in favor of versions that accept a `String` for the schema
name rather than `CatalogSchemaName`. ({issue}`16862`)