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 383 release notes #12565

Merged
merged 1 commit into from
Jun 1, 2022
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-383
release/release-382
release/release-381
release/release-380
Expand Down
119 changes: 119 additions & 0 deletions docs/src/main/sphinx/release/release-383.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
# Release 383 (1 June 2022)

## General

* Introduce `json_exists`, `json_query`, and `json_value` [JSON functions](/functions/json). ({issue}`9081`)
* Add AWS IAM role support for exchange spooling on S3. ({issue}`12444`)
* Improve query performance by reducing worker-to-worker communication overhead. ({issue}`11289`)
colebow marked this conversation as resolved.
Show resolved Hide resolved
* Improve performance and reduce memory usage of queries that contain aggregations. ({issue}`12336`)
* Improve performance of correlated queries involving distinct aggregations. ({issue}`12564`)

## Web UI
colebow marked this conversation as resolved.
Show resolved Hide resolved

* Clarify format of cumulative user memory on query details page. ({issue}`12596`)

## Accumulo connector

* Fail creating a new table if a table comment is specified. Previously, the
comment was ignored. ({issue}`12452`)

## BigQuery connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## Cassandra connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## ClickHouse connector

* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)

## Delta Lake connector

* Add support for table comments during table creation.. ({issue}`12452`)
* Fix incorrect `table already exists` error caused by a client timeout when
creating a new table. ({issue}`12300`)
ebyhr marked this conversation as resolved.
Show resolved Hide resolved
* Fail creating a new table if a column comment is specified. Previously, the
colebow marked this conversation as resolved.
Show resolved Hide resolved
comment was ignored. ({issue}`12574`)

## Iceberg connector

* Add support for v2 tables for the `optimize` table procedure. ({issue}`12351`)
* Rename `hive.target-max-file-size` to `iceberg.target-max-file-size` and
`hive.delete-schema-locations-fallback` to `iceberg.delete-schema-locations-fallback`. ({issue}`12330`)

## Kudu connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## MariaDB connector

* Fix incorrect results for certain queries involving aggregations that are
pushed down to the underlying database. ({issue}`12598`)
* Fail creating a new table if a column comment is specified. Previously, the
comment was ignored. ({issue}`12574`)

colebow marked this conversation as resolved.
Show resolved Hide resolved
## Memory connector

* Fail creating a new table if a table comment or a column comment is specified.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong issue? 12452 is about Delta Lake, not memory connector, according to its title.

Copy link
Member Author

@colebow colebow Jun 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think so - 71dcb66 included this change, and was a part of that PR.

It looks like it probably should've been two PRs, one for the table comment change, and then one for adding support to Delta Lake, but as it stands, these are the two relevant things to link to.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, got it. We may want to change the title of that PR to reduce confusion.

Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## MySQL connector

* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)
* Fail creating a new table if a column comment is specified. Previously, the
comment was ignored. ({issue}`12574`)

## Oracle connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)
* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)

## Phoenix connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## PostgreSQL connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)
* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)

## Raptor connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## Redshift connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)

## SingleStore (MemSQL) connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)
* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)

## SQL Server connector

* Fail creating a new table if a table comment or a column comment is specified.
Previously, the comment was ignored. ({issue}`12452`, {issue}`12574`)
* Fix incorrect results for certain aggregation queries when aggregations are
pushed down to the underlying database. ({issue}`12598`)

## SPI

* Allow limiting access to functions based on whether they are scalar,
aggregation, window, or table functions. ({issue}`12544`)