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 465 release notes #23987

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
6 changes: 6 additions & 0 deletions docs/release-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

## Exasol connector

## Faker connector

## Google Sheets connector

## Hive connector
Expand Down Expand Up @@ -80,4 +82,8 @@

## TPC-H connector

## TPC-DS connector
mosabua marked this conversation as resolved.
Show resolved Hide resolved

## Vertica connector

## SPI
1 change: 1 addition & 0 deletions docs/src/main/sphinx/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
```{toctree}
:maxdepth: 1

release/release-465
release/release-464
release/release-463
release/release-462
Expand Down
45 changes: 45 additions & 0 deletions docs/src/main/sphinx/release/release-465.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Release 465 (8 Nov 2024)

## General

* Add the {func}`cosine_similarity` function for dense vectors. ({issue}`23964`)
* Add support for reading geometries in [EWKB
format](https://en.wikipedia.org/wiki/Well-known_text_representation_of_geometry)
with the `ST_GeomFromBinary` function. ({issue}`23824`)
* Add support for the `ORDER BY` clause in a windowed aggregate function. ({issue}`23929`)

## BigQuery connector

* Fix failure when reading views with `timestamp` columns. ({issue}`24004`)

## Clickhouse connector

* Fix insert for tables with the Clickhouse `TimestampWithTimeZone` type. ({issue}`23785`)

## Faker connector

* Add the `random_string` catalog function to test expressions for random string
creation. ({issue}`23990`)
* Make generated data deterministic for repeated queries. ({issue}`24008`)
mosabua marked this conversation as resolved.
Show resolved Hide resolved

## Hive connector

* Add support for skipping archiving when committing to a table in the Glue metastore
and the `hive.metastore.glue.skip-archive` configuration property is set to
`true`. ({issue}`23817`)
* Use drop and create operation when replacing an existing SQL routine stored in
Copy link
Member

Choose a reason for hiding this comment

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

Not sure what this means. What's the user-visible impact?

Copy link
Member Author

Choose a reason for hiding this comment

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

that is my question to the maintainers and contributors as well

Copy link
Member Author

Choose a reason for hiding this comment

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

@findinpath @ebyhr @electrum ?

I kinda think that there is no user facing impact and we might drop the entry..

the Hive Metastore. ({issue}`24010`)

## Iceberg connector

* Add support for reading and writing arbitrary table properties with the
`extra_properties` table property. ({issue}`17427`, {issue}`24031`)
* Add support for configuring an OAuth2 server URI with the
`iceberg.rest-catalog.oauth2.server-uri` configuration property. ({issue}`23086`)
* Improve performance of Iceberg queries involving multiple table scans. ({issue}`23945`)

## SPI

* {{breaking}} Remove deprecated variants of `checkCanExecuteQuery` and
`checkCanSetSystemSessionProperty` without a `QueryId` parameter from
`SystemAccessControl`. ({issue}`23244`)