lihaosky commented on code in PR #27251: URL: https://github.com/apache/flink/pull/27251#discussion_r2578122062
########## flink-table/flink-sql-parser/src/main/java/org/apache/flink/sql/parser/ddl/SqlAlterConnectionReset.java: ########## @@ -0,0 +1,68 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.sql.parser.ddl; + +import org.apache.flink.sql.parser.SqlParseUtils; +import org.apache.flink.sql.parser.SqlUnparseUtils; + +import org.apache.calcite.sql.SqlIdentifier; +import org.apache.calcite.sql.SqlNode; +import org.apache.calcite.sql.SqlNodeList; +import org.apache.calcite.sql.SqlWriter; +import org.apache.calcite.sql.parser.SqlParserPos; + +import java.util.List; +import java.util.Set; +import java.util.stream.Collectors; + +import static java.util.Objects.requireNonNull; + +/** + * ALTER CONNECTION [IF EXISTS] [[catalogName.] dataBasesName.]connectionName RESET ( 'key1' [, + * 'key2']...). + */ +public class SqlAlterConnectionReset extends SqlAlterConnection { + private final SqlNodeList optionKeyList; + + public SqlAlterConnectionReset( + SqlParserPos pos, + SqlIdentifier connectionName, + boolean ifConnectionExists, + SqlNodeList optionKeyList) { + super(pos, connectionName, ifConnectionExists); + this.optionKeyList = requireNonNull(optionKeyList, "optionKeyList should not be null"); + } + + @Override + public List<SqlNode> getOperandList() { + return List.of(name, optionKeyList); + } + + public Set<String> getResetKeys() { + return optionKeyList.getList().stream() + .map(SqlParseUtils::extractString) + .collect(Collectors.toSet()); + } Review Comment: It will be used later. Let me extract it out ########## flink-table/flink-sql-parser/src/main/java/org/apache/flink/sql/parser/ddl/SqlAlterConnection.java: ########## @@ -0,0 +1,60 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.apache.flink.sql.parser.ddl; + +import org.apache.calcite.sql.SqlIdentifier; +import org.apache.calcite.sql.SqlKind; +import org.apache.calcite.sql.SqlSpecialOperator; +import org.apache.calcite.sql.SqlWriter; +import org.apache.calcite.sql.parser.SqlParserPos; + +/** + * Abstract class to describe statements like ALTER CONNECTION [IF EXISTS] [[catalogName.] + * dataBasesName.]connectionName ... + */ +public abstract class SqlAlterConnection extends SqlAlterObject { + + private static final SqlSpecialOperator OPERATOR = + new SqlSpecialOperator("ALTER CONNECTION", SqlKind.OTHER_DDL); + + protected final boolean ifConnectionExists; + + public SqlAlterConnection( + SqlParserPos pos, SqlIdentifier connectionName, boolean ifConnectionExists) { + super(OPERATOR, pos, "CONNECTION", connectionName); + this.ifConnectionExists = ifConnectionExists; + } + + /** + * Whether to ignore the error if the connection doesn't exist. + * + * @return true when IF EXISTS is specified. + */ + public boolean ifConnectionExists() { Review Comment: It will be used in followup PRs to support `alter if exists connection...`. Similar to model/table -- 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]
