Skip to content

Commit 6b14877

Browse files
committed
Fix log message grammar
1 parent 5823493 commit 6b14877

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
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;

0 commit comments

Comments
 (0)