-
WIth DISTINCT this works
```
trino> SELECT array_agg(DISTINCT concat(value, value) ) csv_value
-> FROM (VALUES 'a', 'b', 'c', 'b') t(value);
csv_value
--------------
[cc, aa, bb]
```
…
-
SELECT hash_counts(make_set_digest(value))
-> FROM (VALUES 1, 1, 1, 2, 2) T(value);
Query 20230825_135635_00045_6rvfh failed: line 1:8: Could not choose a best candidate operator. Expli…
-
When a JDBC call is made, the result set contains a buffer of up to 50k (N) rows (https://github.com/trinodb/trino/blob/master/client/trino-jdbc/src/main/java/io/trino/jdbc/TrinoResultSet.java#L108).
…
-
Several connectors support properties on schema, tables and columns but not BigQuery limiting DDL and table setup from the Trino environment.
Examples of properties:
__For schema (Trino) / datas…
-
https://github.com/trinodb/trino/pull/4187
-
Tested on AWS EMR 6.4.0 + Trino 359
If glue has a partition created, but the path on S3 is inexistent, queries fail to run.
Scenario:
Partitions for every hour (0-24) are created in Glue where …
-
Apache Solr is an open source multi-modal search platform and we need a connector to connect both Trino and Apache Solr. This connector should be able to read in parallel from Solr and also implement …
-
Introduced by @electrum in Trino 370 with https://github.com/trinodb/trino/pull/10820
-
*Please make sure you are familiar with the SIP process documented*
[here](https://github.com/apache/superset/issues/5602). The SIP will be numbered by a committer upon acceptance.
## [SIP] Adding…
-
Hi all,
It's good, I manage to make the `ResultSet` coming from **Trino** editable by SQL commands generated when calling the methods allowing positioned updates on the `ResultSet`.
In order to …