trino
trino copied to clipboard
Official repository of Trino, the distributed SQL query engine for big data, formerly known as PrestoSQL (https://trino.io)
## Description If a table was just created it may not contain any snapshots. Procedures run on tables that do not contain any snapshots can safely do nothing. > Is...
## Description Assemble the release notes for the upcoming Trino 393 release. > Is this change a fix, improvement, new feature, refactoring, or other? Improvement > Is this a change...
Hi, I am using Trino with S3 using hivemetastore. I need to create table having columns with starting * like *cdrID. However, At the time of create table command. Trino...
The single invocation of `DomainTranslator.visitComparisonExpression` used to call type analysis 3 times: in `toNormalizedSimpleComparison`, in `isImplicitCoercion` and once directly in `visitComparisonExpression`. Extracted from https://github.com/trinodb/trino/pull/13567
## Overview We can enable token refresh with something like the following config: ``` http-server.authentication.type=PASSWORD,oauth2 http-server.authentication.oauth2.client-id=${ENV:OAUTH_CLIENT_ID} http-server.authentication.oauth2.client-secret=${ENV:OAUTH_CLIENT_SECRET} http-server.authentication.oauth2.issuer={server} http-server.authentication.oauth2.additional-audiences=api://default http-server.authentication.oauth2.oidc.use-userinfo-endpoint=false http-server.authentication.oauth2.auth-url={url} http-server.authentication.oauth2.token-url={url-2} http-server.authentication.oauth2.jwks-url={url-3} http-server.authentication.oauth2.scopes=insights_read_write,openid,offline_access http-server.authentication.oauth2.refresh-tokens=true http-server.authentication.oauth2.refresh-tokens.issued-token.timeout=1h ``` This will make...
## Description This allows us deploy hive connector in a keytab less environment where the credentials are fetched from credential cache file. > Is this change a fix, improvement, new...
Context https://trino.io/docs/current/sql/alter-table.html The `NOT NULL` constraint set while adding the `city` column in the snipped below is not actually being added. ``` trino:default> alter table my_table_with_not_null_columns ADD COLUMN city VARCHAR...
## Description This reverts commit 9ddaa60df18f74247d299cf0ce4c81d9383cfb9d. Including both a RowDelta and a DeleteFiles commit in the same Iceberg transaction results in the table history being cleared. Instead only write RowDeltas,...
## Description This version of Airlift updates the Byte Buddy library and its JNA dependency to the latest 5.12.1. This should help us to remove the JNA dependency in the...