Copilot commented on code in PR #9895:
URL: https://github.com/apache/gravitino/pull/9895#discussion_r2768099897
##########
trino-connector/trino-connector/src/test/java/org/apache/gravitino/trino/connector/GravitinoMockServer.java:
##########
@@ -621,7 +621,7 @@ void doAlterTable(
}
private void addColumn(
- ConnectorMetadata metadata, ConnectorTableHandle tableHandle,
ColumnMetadata columnMetadata) {
+ ConnectorMetadata metadata, ConnectorTableHandle tableHandle,
ColumnMetadata columnMetadata) throws TrinoException{
Review Comment:
Missing space before opening brace. According to Google Java Style Guide,
there should be a space between the closing parenthesis and the opening brace
of the throws clause.
```suggestion
ConnectorMetadata metadata, ConnectorTableHandle tableHandle,
ColumnMetadata columnMetadata) throws TrinoException {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]