Skip to content

Add Trino 419 release notes #17626

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

Merged
merged 1 commit into from
Jun 5, 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.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
```{toctree}
:maxdepth: 1

release/release-419
release/release-418
release/release-417
release/release-416
Expand Down
64 changes: 64 additions & 0 deletions docs/src/main/sphinx/release/release-419.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Release 419 (5 June 2023)
Copy link
Member

Choose a reason for hiding this comment

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

We've used Jun instead of June in the past release notes.

Copy link
Member

Choose a reason for hiding this comment

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

@ryandoowan can you check and maybe send a small PR to fix this .. cc @colebow


## General

* Add the {func}`array_histogram` function to find the number of occurrences of
the unique elements in an array. ({issue}`14725 `)
* Improve planning performance for queries involving joins. ({issue}`17458`)
* Fix query failure when the server JSON response exceeds the 5MB limit for
string values. ({issue}`17557`)

## Web UI

* Allow uppercase or mixed case values for the `web-ui.authentication.type`
configuration property. ({issue}`17334`)

## BigQuery connector

* Add support for proxying BigQuery APIs via an HTTP(S) proxy. ({issue}`17508`)
* Improve performance of retrieving metadata from BigQuery. ({issue}`16064`)

## Delta Lake connector

* Support the `id` and `name` mapping modes when adding new columns. ({issue}`17236`)
* Improve performance of reading Parquet files. ({issue}`17612`)
* Improve performance when writing Parquet files with
[structural data types](structural-data-types). ({issue}`17665`)
* Properly display the schema, table name, and location of tables being inserted
into in the output of `EXPLAIN` queries. ({issue}`17590`)
* Fix query failure when writing to a file location with a trailing `/` in its
name. ({issue}`17552`)

## Hive connector

* Add support for reading ORC files with shorthand timezone ids in the Stripe
footer metadata. You can set the `hive.orc.read-legacy-short-zone-id`
configuration property to `true` to enable this behavior. ({issue}`12303`)
* Improve performance of reading ORC files with Bloom filter indexes. ({issue}`17530`)
* Improve performance of reading Parquet files. ({issue}`17612`)
* Improve optimized Parquet writer performance for
[structural data types](structural-data-types). ({issue}`17665`)
* Fix query failure for tables with file paths that contain non-alphanumeric
characters. ({issue}`17621`)

## Hudi connector

* Improve performance of reading Parquet files. ({issue}`17612`)
* Improve performance when writing Parquet files with
[structural data types](structural-data-types). ({issue}`17665`)

## Iceberg connector

* Add support for the [Nessie catalog](iceberg-nessie-catalog). ({issue}`11701`)
* Disallow use of the `migrate` table procedure on Hive tables with `array`,
`map` and `row` types. Previously, this returned incorrect results after the
migration. ({issue}`17587`)
* Improve performance of reading ORC files with Bloom filter indexes. ({issue}`17530`)
* Improve performance of reading Parquet files. ({issue}`17612`)
* Improve performance when writing Parquet files with
[structural data types](structural-data-types). ({issue}`17665`)
* Improve performance of reading table statistics. ({issue}`16745`)

## SPI

* Remove unused `NullAdaptationPolicy` from `ScalarFunctionAdapter`. ({issue}`17706`)