This is an automated email from the ASF dual-hosted git repository. zhangliang 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 563de1b3e2b Remove useless MySQLTableStatement (#35391) 563de1b3e2b is described below commit 563de1b3e2b95f8226ac68dd64a2f2ad28536315 Author: Liang Zhang <zhangli...@apache.org> AuthorDate: Wed May 14 02:42:54 2025 +0800 Remove useless MySQLTableStatement (#35391) --- .../statement/mysql/dml/MySQLTableStatement.java | 40 ---------------------- 1 file changed, 40 deletions(-) diff --git a/parser/sql/statement/type/mysql/src/main/java/org/apache/shardingsphere/sql/parser/statement/mysql/dml/MySQLTableStatement.java b/parser/sql/statement/type/mysql/src/main/java/org/apache/shardingsphere/sql/parser/statement/mysql/dml/MySQLTableStatement.java deleted file mode 100644 index cea87250072..00000000000 --- a/parser/sql/statement/type/mysql/src/main/java/org/apache/shardingsphere/sql/parser/statement/mysql/dml/MySQLTableStatement.java +++ /dev/null @@ -1,40 +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.sql.parser.statement.mysql.dml; - -import lombok.Getter; -import lombok.Setter; -import org.apache.shardingsphere.sql.parser.statement.core.segment.dml.column.ColumnSegment; -import org.apache.shardingsphere.sql.parser.statement.core.segment.dml.pagination.limit.LimitSegment; -import org.apache.shardingsphere.sql.parser.statement.core.segment.generic.table.SimpleTableSegment; -import org.apache.shardingsphere.sql.parser.statement.core.statement.dml.TableStatement; -import org.apache.shardingsphere.sql.parser.statement.mysql.MySQLStatement; - -/** - * MySQL table statement. - */ -@Getter -@Setter -public final class MySQLTableStatement extends TableStatement implements MySQLStatement { - - private SimpleTableSegment table; - - private ColumnSegment column; - - private LimitSegment limit; -}