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 2600de61b65 Remove useless SimpleSQLStatement (#32104)
2600de61b65 is described below
commit 2600de61b657046e3ce2ae82590890864e2305bb
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Jul 14 23:12:21 2024 +0800
Remove useless SimpleSQLStatement (#32104)
---
.../core/statement/SimpleSQLStatement.java | 29 ----------------------
1 file changed, 29 deletions(-)
diff --git
a/parser/sql/statement/core/src/main/java/org/apache/shardingsphere/sql/parser/statement/core/statement/SimpleSQLStatement.java
b/parser/sql/statement/core/src/main/java/org/apache/shardingsphere/sql/parser/statement/core/statement/SimpleSQLStatement.java
deleted file mode 100644
index 96527146795..00000000000
---
a/parser/sql/statement/core/src/main/java/org/apache/shardingsphere/sql/parser/statement/core/statement/SimpleSQLStatement.java
+++ /dev/null
@@ -1,29 +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.core.statement;
-
-/**
- * Simple SQL statement.
- */
-public final class SimpleSQLStatement implements SQLStatement {
-
- @Override
- public int getParameterCount() {
- return 0;
- }
-}