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 387 release notes #12881

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

## General

* Add support for query parameters in table function arguments. ({issue}`12910`)
* Update minimum required Java version to 11.0.15. ({issue}`12841`)
colebow marked this conversation as resolved.
Show resolved Hide resolved
* Fix incorrect result for {func}`to_iso8601` when the timestamp is in the
daylight savings transition region. ({issue}`11619`)

## CLI

* Fix query history not being stored when a query starts with whitespace. ({issue}`12847`)

## Delta Lake connector

* Record table size when analyzing a table. ({issue}`12814`)
* Enable the optimized Parquet writer by default. This can be disabled via the
`parquet.experimental-optimized-writer.enabled` configuration property. ({issue}`12757`)
* Disallow adding a new column to a table that has been written with an
unsupported writer. ({issue}`12883`)

## Hive connector

* Add support for ORC bloom filters on `varchar` columns. ({issue}`11757`)

## Iceberg connector

* Allow `OPTIMIZE` on a table partitioned on a `timestamp with time zone` column
when using `CAST(timestamp_col AS date) >= DATE '...'` syntax. ({issue}`12362`)
* Allow `OPTIMIZE` with a predicate on a table that does not have identity
partitioning. ({issue}`12795`)
* Improve performance of `DELETE` when deleting whole partitions from a table
that does not have identity partitioning. ({issue}`7905`)
* Fix incorrect results when a query contains a filter on a `UUID` column. ({issue}`12834`)
* Fail queries that attempt to modify old snapshots. ({issue}`12860`)
* Deprecate using synthetic `@`-based syntax for Iceberg snapshot access in
favor of the `AS OF` syntax. The old behavior can be restored by setting the
`allow_legacy_snapshot_syntax` session property or
`iceberg.allow-legacy-snapshot-syntax` configuration property. ({issue}`10768`)

## Kudu connector

* Fix failure when inserting into a table with a `row_uuid` column. ({issue}`12915`)

## Pinot connector

* Add support for querying Pinot via the gRPC endpoint. ({issue}`9296 `)

## Redis connector

* Add support for predicate pushdown on columns of type `string`. ({issue}`12218`)

## SPI

* Add information about query retry policy to `QueryCompletedEvent` and
`QueryCreatedEvent`. ({issue}`12898`)