Skip to content

Commit

Permalink
Add Trino 422 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
colebow authored and martint committed Jul 13, 2023
1 parent 3d3ded3 commit b8b2b7c
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/src/main/sphinx/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
```{toctree}
:maxdepth: 1
release/release-422
release/release-421
release/release-420
release/release-419
Expand Down
52 changes: 52 additions & 0 deletions docs/src/main/sphinx/release/release-422.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Release 422 (12 Jul 2023)

## General

* Add support for adding nested fields with an `ADD COLUMN` statement. ({issue}`16248`)
* Improve performance of `INSERT` and `CREATE TABLE AS ... SELECT` queries. ({issue}`18005`)
* Prevent queries from hanging when worker nodes fail and the
`task.retry-policy` configuration property is set to `TASK`. ({issue}`18175 `)

## Security

* Add support for validating JWT types with OAuth 2.0 authentication. ({issue}`17640`)
* Fix error when the `http-server.authentication.type` configuration property
is set to `oauth2` or `jwt` and the `principal-field` property's value
differs. ({issue}`18210`)

## BigQuery connector

* Add support for writing to columns with a `timestamp(p) with time zone` type. ({issue}`17793`)

## Delta Lake connector

* Add support for renaming columns. ({issue}`15821`)
* Improve performance of reading from tables with a large number of
[checkpoints](https://docs.delta.io/latest/delta-batch.html#-data-retention). ({issue}`17405`)
* Disallow using the `vacuum` procedure when the max
[writer version](https://docs.delta.io/latest/versioning.html#features-by-protocol-version)
is above 5. ({issue}`18095`)

## Hive connector

* Add support for reading the `timestamp with local time zone` Hive type. ({issue}`1240`)
* Add a native Avro file format writer. This can be disabled with the
`avro.native-writer.enabled` configuration property or the
`avro_native_writer_enabled` session property. ({issue}`18064`)
* Fix query failure when the `hive.recursive-directories` configuration property
is set to true and partition names contain non-alphanumeric characters. ({issue}`18167`)

## Iceberg connector

* Add support for adding nested fields with an `ADD COLUMN` statement. ({issue}`16248`)
* Change the default file format to Parquet. The `iceberg.file-format`
catalog configuration property can be used to specify a different default file
format. ({issue}`18170`)
* Improve performance of reading `row` types from Parquet files. ({issue}`17387`)
* Fix failure when writing to tables sorted on `UUID` or `TIME` types. ({issue}`18136`)

## Redshift connector

* Prevent returning incorrect results by throwing an error when encountering
unsupported types. Previously, the query would fall back to the legacy type
mapping. ({issue}`18209`)

0 comments on commit b8b2b7c

Please sign in to comment.