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 344d903444d Remove TableContextAvailable (#35712)
344d903444d is described below
commit 344d903444dba883d4c4607c1ce112200d57ef9c
Author: Liang Zhang <[email protected]>
AuthorDate: Sun Jun 15 17:39:47 2025 +0800
Remove TableContextAvailable (#35712)
---
.../binder/context/type/TableContextAvailable.java | 33 ----------------------
1 file changed, 33 deletions(-)
diff --git
a/infra/binder/core/src/main/java/org/apache/shardingsphere/infra/binder/context/type/TableContextAvailable.java
b/infra/binder/core/src/main/java/org/apache/shardingsphere/infra/binder/context/type/TableContextAvailable.java
deleted file mode 100644
index d7dc70290c2..00000000000
---
a/infra/binder/core/src/main/java/org/apache/shardingsphere/infra/binder/context/type/TableContextAvailable.java
+++ /dev/null
@@ -1,33 +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.infra.binder.context.type;
-
-import
org.apache.shardingsphere.infra.binder.context.segment.table.TablesContext;
-
-/**
- * Table context available.
- */
-public interface TableContextAvailable {
-
- /**
- * Get tables context.
- *
- * @return tables context
- */
- TablesContext getTablesContext();
-}