This is an automated email from the ASF dual-hosted git repository. xxubai pushed a commit to branch 0.9.x in repository https://gitbox.apache.org/repos/asf/amoro.git
commit 65b69fbe27f90babdf93ef4f4d0d60b01a33ef94 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 (cherry picked from commit 7c791a5f5dbfb509eabffc8a46a42a18791d439b) --- .../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());
