Skip to content

Commit

Permalink
Update Trino
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Feb 3, 2025
1 parent c9fe90a commit 5b6541e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/database-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
docker pull ibmcom/informix-developer-database:14.10.FC7W1DE
dbproject="dbtest"
elif [ "${{ matrix.database }}" == "trino" ]; then
docker pull trinodb/trino:468
docker pull trinodb/trino:469
dbproject="dbtest"
else
dbproject="dbtest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.24.1
generated on 2024-12-21 22:08:11
database version Trino 468
driver version Trino JDBC Driver 468
generated by SchemaCrawler 16.25.2
generated on 2025-02-03 00:21:10
database version Trino 469
driver version Trino JDBC Driver 469



Expand Down Expand Up @@ -501,7 +501,7 @@ System Information
Database Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
database product name Trino
database product version 468
database product version 469
database user name test


Expand All @@ -516,14 +516,14 @@ catalogs jmx, memory, system, tpcds, tpch
client info properties ApplicationName, ClientInfo, ClientTags, TraceToken
data definition causes transaction commit false
data definition ignored in transactions false
database major version 468
database major version 469
database minor version 0
default transaction isolation 1
deletes are detected for TYPE_FORWARD_ONLY result sets false
deletes are detected for TYPE_SCROLL_INSENSITIVE result sets false
deletes are detected for TYPE_SCROLL_SENSITIVE result sets false
does max row size include blobs true
driver major version 468
driver major version 469
driver minor version 0
extra name characters
generated key always returned false
Expand Down Expand Up @@ -675,9 +675,9 @@ uses local files false

JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:trino://localhost:55832/
connection url jdbc:trino://localhost:56842/
driver name Trino JDBC Driver
driver version 468
driver version 469
driver class name io.trino.jdbc.TrinoDriver
is JDBC compliant false
supported JDBC version 4.2
Expand Down Expand Up @@ -955,3 +955,8 @@ user [driver property]
not required
value null

validateConnection [driver property]

not required; choices [false, true]
value null

Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
System Information
========================================================================

generated by SchemaCrawler 16.24.1
generated on 2024-12-21 22:09:14
database version Trino 468
driver version Trino JDBC Driver 468
generated by SchemaCrawler 16.25.2
generated on 2025-02-03 00:22:18
database version Trino 469
driver version Trino JDBC Driver 469



Expand Down Expand Up @@ -501,7 +501,7 @@ System Information
Database Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
database product name Trino
database product version 468
database product version 469
database user name test


Expand All @@ -516,14 +516,14 @@ catalogs jmx, memory, system, tpcds, tpch
client info properties ApplicationName, ClientInfo, ClientTags, TraceToken
data definition causes transaction commit false
data definition ignored in transactions false
database major version 468
database major version 469
database minor version 0
default transaction isolation 1
deletes are detected for TYPE_FORWARD_ONLY result sets false
deletes are detected for TYPE_SCROLL_INSENSITIVE result sets false
deletes are detected for TYPE_SCROLL_SENSITIVE result sets false
does max row size include blobs true
driver major version 468
driver major version 469
driver minor version 0
extra name characters
generated key always returned false
Expand Down Expand Up @@ -676,9 +676,9 @@ uses local files false

JDBC Driver Information
-=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=--=-
connection url jdbc:trino://localhost:55889/
connection url jdbc:trino://localhost:56949/
driver name Trino JDBC Driver
driver version 468
driver version 469
driver class name io.trino.jdbc.TrinoDriver
is JDBC compliant false
supported JDBC version 4.2
Expand Down Expand Up @@ -956,3 +956,8 @@ user [driver property]
not required
value null

validateConnection [driver property]

not required; choices [false, true]
value null

2 changes: 1 addition & 1 deletion schemacrawler-jdbc-drivers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
<dependency>
<groupId>io.trino</groupId>
<artifactId>trino-jdbc</artifactId>
<version>468</version>
<version>469</version>
</dependency>
<dependency>
<groupId>org.duckdb</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public final class TrinoTestUtility {

public static TrinoContainer newTrinoContainer() {
return newTrinoContainer("468");
return newTrinoContainer("469");
}

private static TrinoContainer newTrinoContainer(final String version) {
Expand Down

0 comments on commit 5b6541e

Please sign in to comment.