Skip to content

Commit 6a67cbf

Browse files
authored
Merge branch 'trinodb:master' into hsqldb
2 parents 865796d + 3ad45d3 commit 6a67cbf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

plugin/trino-iceberg/src/main/java/io/trino/plugin/iceberg/IcebergMetadata.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,7 +1522,7 @@ public Optional<ConnectorOutputMetadata> finishInsert(
15221522
commitUpdate(appendFiles, session, "insert");
15231523

15241524
if (isS3Tables(icebergTable.location())) {
1525-
log.debug("S3 Tables does not support statistics: %s", table.name());
1525+
log.debug("S3 Tables do not support statistics: %s", table.name());
15261526
}
15271527
else if (!computedStatistics.isEmpty()) {
15281528
long newSnapshotId = icebergTable.currentSnapshot().snapshotId();
@@ -2963,7 +2963,7 @@ public ConnectorTableHandle beginStatisticsCollection(ConnectorSession session,
29632963
IcebergTableHandle handle = (IcebergTableHandle) tableHandle;
29642964
Table icebergTable = catalog.loadTable(session, handle.getSchemaTableName());
29652965
if (isS3Tables(icebergTable.location())) {
2966-
throw new TrinoException(NOT_SUPPORTED, "S3 Tables does not support analyze");
2966+
throw new TrinoException(NOT_SUPPORTED, "S3 Tables do not support analyze");
29672967
}
29682968
beginTransaction(icebergTable);
29692969
return handle;

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
<dep.confluent.version>7.8.0</dep.confluent.version>
193193
<dep.docker.images.version>119</dep.docker.images.version>
194194
<dep.drift.version>1.24</dep.drift.version>
195-
<dep.flyway.version>11.15.0</dep.flyway.version>
195+
<dep.flyway.version>11.16.0</dep.flyway.version>
196196
<dep.frontend-maven-plugin.version>1.15.4</dep.frontend-maven-plugin.version>
197197
<dep.frontend-node.version>v22.14.0</dep.frontend-node.version>
198198
<dep.frontend-npm.version>11.2.0</dep.frontend-npm.version>
@@ -301,7 +301,7 @@
301301
<dependency>
302302
<groupId>software.amazon.awssdk</groupId>
303303
<artifactId>bom</artifactId>
304-
<version>2.37.5</version>
304+
<version>2.38.1</version>
305305
<type>pom</type>
306306
<scope>import</scope>
307307
</dependency>
@@ -522,7 +522,7 @@
522522
<dependency>
523523
<groupId>com.nimbusds</groupId>
524524
<artifactId>nimbus-jose-jwt</artifactId>
525-
<version>10.5</version>
525+
<version>10.6</version>
526526
</dependency>
527527

528528
<dependency>

0 commit comments

Comments
 (0)