strongduanmu commented on a change in pull request #16032:
URL: https://github.com/apache/shardingsphere/pull/16032#discussion_r825530787
##########
File path:
shardingsphere-sql-parser/shardingsphere-sql-parser-statement/src/main/java/org/apache/shardingsphere/sql/parser/sql/dialect/statement/sqlserver/dcl/SQLServerRevokeStatement.java
##########
@@ -17,13 +17,21 @@
package
org.apache.shardingsphere.sql.parser.sql.dialect.statement.sqlserver.dcl;
+import lombok.Getter;
import lombok.ToString;
+import
org.apache.shardingsphere.sql.parser.sql.common.segment.dml.column.ColumnSegment;
import
org.apache.shardingsphere.sql.parser.sql.common.statement.dcl.RevokeStatement;
import
org.apache.shardingsphere.sql.parser.sql.dialect.statement.sqlserver.SQLServerStatement;
+import java.util.LinkedList;
+import java.util.List;
+
/**
* SQLServer revoke statement.
*/
@ToString
+@Getter
public final class SQLServerRevokeStatement extends RevokeStatement implements
SQLServerStatement {
+
+ private final List<ColumnSegment> columns = new LinkedList<>();
Review comment:
@ThanoshanMV Can we use Collection<ColumnSegment> here?
--
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]