This is an automated email from the ASF dual-hosted git repository. totalo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push: new fd574b81483 Remove ParserConfiguration (#28081) fd574b81483 is described below commit fd574b8148331d9d2d23a2843ef83fef07323018 Author: zhaojinchao <zhaojinc...@apache.org> AuthorDate: Tue Aug 15 01:00:37 2023 +0800 Remove ParserConfiguration (#28081) --- .../infra/parser/ParserConfiguration.java | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/infra/parser/src/main/java/org/apache/shardingsphere/infra/parser/ParserConfiguration.java b/infra/parser/src/main/java/org/apache/shardingsphere/infra/parser/ParserConfiguration.java deleted file mode 100644 index 92ffd750955..00000000000 --- a/infra/parser/src/main/java/org/apache/shardingsphere/infra/parser/ParserConfiguration.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * 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.shardingsphere.infra.parser; - -import lombok.Getter; -import lombok.RequiredArgsConstructor; -import org.apache.shardingsphere.sql.parser.api.CacheOption; - -/** - * Parser configuration. - */ -@RequiredArgsConstructor -@Getter -public final class ParserConfiguration { - - private final CacheOption sqlStatementCacheOption; - - private final CacheOption parseTreeCacheOption; - - private final boolean isParseComment; -}