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 bd685ac3589 Remove useless ShardingDeleteSupportedChecker (#36298)
bd685ac3589 is described below
commit bd685ac3589163626288f2a9565a63d70e26adb1
Author: Liang Zhang <[email protected]>
AuthorDate: Thu Aug 14 11:55:53 2025 +0800
Remove useless ShardingDeleteSupportedChecker (#36298)
---
.../sql/dml/ShardingDeleteSupportedChecker.java | 44 ----------------------
1 file changed, 44 deletions(-)
diff --git
a/features/sharding/core/src/main/java/org/apache/shardingsphere/sharding/checker/sql/dml/ShardingDeleteSupportedChecker.java
b/features/sharding/core/src/main/java/org/apache/shardingsphere/sharding/checker/sql/dml/ShardingDeleteSupportedChecker.java
deleted file mode 100644
index 6679b9319c7..00000000000
---
a/features/sharding/core/src/main/java/org/apache/shardingsphere/sharding/checker/sql/dml/ShardingDeleteSupportedChecker.java
+++ /dev/null
@@ -1,44 +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.sharding.checker.sql.dml;
-
-import org.apache.shardingsphere.infra.annotation.HighFrequencyInvocation;
-import
org.apache.shardingsphere.infra.binder.context.statement.SQLStatementContext;
-import
org.apache.shardingsphere.infra.binder.context.statement.type.dml.DeleteStatementContext;
-import org.apache.shardingsphere.infra.checker.SupportedSQLChecker;
-import
org.apache.shardingsphere.infra.metadata.database.ShardingSphereDatabase;
-import
org.apache.shardingsphere.infra.metadata.database.schema.model.ShardingSphereSchema;
-import
org.apache.shardingsphere.sharding.checker.sql.common.ShardingSupportedCommonChecker;
-import org.apache.shardingsphere.sharding.rule.ShardingRule;
-
-/**
- * Delete supported checker for sharding.
- */
-@HighFrequencyInvocation
-public final class ShardingDeleteSupportedChecker implements
SupportedSQLChecker<DeleteStatementContext, ShardingRule> {
-
- @Override
- public boolean isCheck(final SQLStatementContext sqlStatementContext) {
- return sqlStatementContext instanceof DeleteStatementContext;
- }
-
- @Override
- public void check(final ShardingRule rule, final ShardingSphereDatabase
database, final ShardingSphereSchema currentSchema, final
DeleteStatementContext sqlStatementContext) {
- ShardingSupportedCommonChecker.checkMultipleTable(rule,
sqlStatementContext);
- }
-}