This is an automated email from the ASF dual-hosted git repository.

zhoujinsong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/amoro.git


The following commit(s) were added to refs/heads/master by this push:
     new 7c791a5f5 [AMORO-4308][lance] Remove redundant getTables call (#4309)
7c791a5f5 is described below

commit 7c791a5f5dbfb509eabffc8a46a42a18791d439b
Author: Xin Sun <[email protected]>
AuthorDate: Mon Aug 3 20:05:58 2026 +0800

    [AMORO-4308][lance] Remove redundant getTables call (#4309)
    
    Change-Id: I8ced8b818e8b77f2757f737df7df4a0a425d07e7
---
 .../java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java    | 2 --
 1 file changed, 2 deletions(-)

diff --git 
a/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java
 
b/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java
index cbb3ce5a2..926d91ec8 100755
--- 
a/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java
+++ 
b/amoro-format-lance/src/main/java/org/apache/amoro/formats/lance/LanceDirectoryV1Catalog.java
@@ -172,8 +172,6 @@ public class LanceDirectoryV1Catalog implements 
FormatCatalog {
     ListTablesResponse response = namespace.listTables(request);
     if (response == null) {
       return Collections.emptyList();
-    } else {
-      response.getTables();
     }
 
     return new ArrayList<>(response.getTables());

Reply via email to