This is an automated email from the ASF dual-hosted git repository.
zhaojinchao 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 21a2c91b385 Remove useless ShowServiceProviderImplementationsStatement
(#30219)
21a2c91b385 is described below
commit 21a2c91b385a0b7da6b487c9f3278b1360613e7e
Author: Raigor <[email protected]>
AuthorDate: Wed Feb 21 14:37:25 2024 +0800
Remove useless ShowServiceProviderImplementationsStatement (#30219)
---
...howServiceProviderImplementationsStatement.java | 32 ----------------------
1 file changed, 32 deletions(-)
diff --git
a/parser/distsql/statement/src/main/java/org/apache/shardingsphere/distsql/statement/ral/queryable/show/ShowServiceProviderImplementationsStatement.java
b/parser/distsql/statement/src/main/java/org/apache/shardingsphere/distsql/statement/ral/queryable/show/ShowServiceProviderImplementationsStatement.java
deleted file mode 100644
index b89ddebf281..00000000000
---
a/parser/distsql/statement/src/main/java/org/apache/shardingsphere/distsql/statement/ral/queryable/show/ShowServiceProviderImplementationsStatement.java
+++ /dev/null
@@ -1,32 +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.distsql.statement.ral.queryable.show;
-
-import lombok.Getter;
-import lombok.RequiredArgsConstructor;
-import
org.apache.shardingsphere.distsql.statement.ral.queryable.QueryableRALStatement;
-
-/**
- * Show service provider implementations statement.
- */
-@RequiredArgsConstructor
-@Getter
-public final class ShowServiceProviderImplementationsStatement extends
QueryableRALStatement {
-
- private final String serviceProviderInterface;
-}