Skip to content

Commit

Permalink
fix ut
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Oct 29, 2024
1 parent e9adf4a commit 545b7a2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/content/spark/sql-alter.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ALTER TABLE my_table SET TBLPROPERTIES (
);
```

## Removing Table Comment
## Removing Table Comment

The following SQL removes table comment.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public String[] call(
throw new SnapshotNotExistException(
String.format(
"The specified snapshot id %s should be smaller than the latest snapshot id %s.",
latestSnapshotId));
nextSnapshotId, latestSnapshotId));
}

ConsumerManager consumerManager =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void run() throws Exception {
throw new SnapshotNotExistException(
String.format(
"The specified snapshot id %s should be smaller than the latest snapshot id %s.",
latestSnapshotId));
nextSnapshotId, latestSnapshotId));
}

ConsumerManager consumerManager =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public String[] call(
throw new SnapshotNotExistException(
String.format(
"The specified snapshot id %s should be smaller than the latest snapshot id %s.",
latestSnapshotId));
nextSnapshotId, latestSnapshotId));
}

ConsumerManager consumerManager =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public InternalRow[] call(InternalRow args) {
throw new SnapshotNotExistException(
String.format(
"The specified snapshot id %s should be smaller than the latest snapshot id %s.",
latestSnapshotId));
nextSnapshotId, latestSnapshotId));
}

ConsumerManager consumerManager =
Expand Down

0 comments on commit 545b7a2

Please sign in to comment.