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 402 release notes #14862

Merged
merged 2 commits into from
Nov 3, 2022
Merged
Changes from 1 commit
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
Next Next commit
Add Trino 402 release notes
  • Loading branch information
colebow committed Nov 2, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 1f3a314f84be9fb8107370c17f4ba2bfbb2340d2
1 change: 1 addition & 0 deletions docs/src/main/sphinx/release.rst
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ Release notes
.. toctree::
:maxdepth: 1

release/release-402
release/release-401
release/release-400
release/release-399
108 changes: 108 additions & 0 deletions docs/src/main/sphinx/release/release-402.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# Release 402 (2 Nov 2022)

## General

* Fix query processing when [fault-tolerant execution](/admin/fault-tolerant-execution)
is enabled and a [stage](trino-concept-stage) of the query produces no data. ({issue}`14794`)

## Blackhole connector

* Add support for column comments on view columns. ({issue}`10705`)

## Clickhouse connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## Delta Lake connector

* Remove the deprecated `hive.parquet.fail-on-corrupted-statistics` and
colebow marked this conversation as resolved.
Show resolved Hide resolved
`parquet.fail-on-corrupted-statistics` configuration properties. The
`parquet.ignore-statistics` property can be used to allow querying Parquet
files with corrupted or incorrect statistics. ({issue}`14777`)
* Fix memory leak and improve memory tracking during large `INSERT` queries. ({issue}`14823`)

## Druid connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## Hive connector

* Add support for column comments on view columns. ({issue}`10705`)
* Remove the deprecated `hive.parquet.fail-on-corrupted-statistics` and
`parquet.fail-on-corrupted-statistics` configuration properties. The
`parquet.ignore-statistics` property can be used to allow querying Parquet
files with corrupted or incorrect statistics. ({issue}`14777`)
* Fix memory leak and improve memory tracking during large `INSERT` queries. ({issue}`14823`)

## Hudi connector

* Remove the deprecated `hive.parquet.fail-on-corrupted-statistics` and
`parquet.fail-on-corrupted-statistics` configuration properties. The
`parquet.ignore-statistics` property can be used to allow querying Parquet
files with corrupted or incorrect statistics. ({issue}`14777`)

## Iceberg connector

* Add support to skip archiving when committing to a table in the Glue
metastore and the `iceberg.glue.skip-archive` configuration property is set
to true. ({issue}`13413`)
* Add support for column comments on view columns. ({issue}`10705`)
* Remove the deprecated `hive.parquet.fail-on-corrupted-statistics` and
`parquet.fail-on-corrupted-statistics` configuration properties. The
`parquet.ignore-statistics` property can be used to allow querying Parquet
files with corrupted or incorrect statistics. ({issue}`14777`)
* Fix incorrect results when the column order in the equality delete filter is
different from the table definition. ({issue}`14693`)
* Fix memory leak and improve memory tracking during large `INSERT` queries. ({issue}`14823`)

## MariaDB connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## Memory connector

* Add support for column comments on view columns. ({issue}`10705`)

## MySQL connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## MongoDB connector

* Support predicate pushdown on `date`, `time(3)`, `timestamp(3)` and
`timestamp(3) with time zone` columns. ({issue}`14795`)

## Oracle connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## Phoenix connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## PostgreSQL connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## Redshift connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## SingleStore (MemSQL) connector

* Reuse JDBC connections for metadata queries. This can be disabled with the
`query.reuse-connection` configuration property. ({issue}`14653`)

## SQL Server connector

* Improve performance of certain queries which use the `OR` operator. ({issue}`14570`)
* Improve performance of queries with predicates involving the `nullif` function
or arithmetic expressions. ({issue}`14570`)
Comment on lines +106 to +108
Copy link
Member Author

Choose a reason for hiding this comment

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

@hashhar does this look ok? I cut down what was proposed pretty significantly - if users are curious, they generally can look at the PR to get additional context.