This is an automated email from the ASF dual-hosted git repository.
zichaowang 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 3830b604b08 Remove MetaDataRequiredQueryableRALExecutor (#29711)
3830b604b08 is described below
commit 3830b604b0857b5d28f492b642c6f209a808a395
Author: Liang Zhang <[email protected]>
AuthorDate: Sat Jan 13 03:52:22 2024 +0800
Remove MetaDataRequiredQueryableRALExecutor (#29711)
---
.../MetaDataRequiredQueryableRALExecutor.java | 41 ----------------------
1 file changed, 41 deletions(-)
diff --git
a/infra/distsql-handler/src/main/java/org/apache/shardingsphere/distsql/handler/ral/query/MetaDataRequiredQueryableRALExecutor.java
b/infra/distsql-handler/src/main/java/org/apache/shardingsphere/distsql/handler/ral/query/MetaDataRequiredQueryableRALExecutor.java
deleted file mode 100644
index 80b528a5073..00000000000
---
a/infra/distsql-handler/src/main/java/org/apache/shardingsphere/distsql/handler/ral/query/MetaDataRequiredQueryableRALExecutor.java
+++ /dev/null
@@ -1,41 +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.handler.ral.query;
-
-import org.apache.shardingsphere.distsql.statement.ral.QueryableRALStatement;
-import
org.apache.shardingsphere.infra.merge.result.impl.local.LocalDataQueryResultRow;
-import org.apache.shardingsphere.infra.metadata.ShardingSphereMetaData;
-
-import java.util.Collection;
-
-/**
- * Meta data required queryable RAL executor.
- *
- * @param <T> type of queryable RAL statement
- */
-public interface MetaDataRequiredQueryableRALExecutor<T extends
QueryableRALStatement> extends QueryableRALExecutor<T> {
-
- /**
- * Get query result rows.
- *
- * @param metaData ShardingSphere meta data
- * @param sqlStatement SQL statement
- * @return query result rows
- */
- Collection<LocalDataQueryResultRow> getRows(ShardingSphereMetaData
metaData, T sqlStatement);
-}