This is an automated email from the ASF dual-hosted git repository. biyan pushed a commit to branch master_typo in repository https://gitbox.apache.org/repos/asf/paimon.git
commit d7a5e017357c5a3ba7f1177da6109e61b60f11ae Author: Yann <[email protected]> AuthorDate: Thu Nov 20 20:52:20 2025 +0800 [spark] fix dropView typo --- .../src/main/java/org/apache/paimon/spark/catalog/SupportView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/catalog/SupportView.java b/paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/catalog/SupportView.java index 3408b1fb45..bcb4702aeb 100644 --- a/paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/catalog/SupportView.java +++ b/paimon-spark/paimon-spark-common/src/main/java/org/apache/paimon/spark/catalog/SupportView.java @@ -80,9 +80,9 @@ public interface SupportView extends WithPaimonCatalog { } } - default void dropView(Identifier ident, Boolean ignoreIfExists) { + default void dropView(Identifier ident, Boolean ignoreIfNotExists) { try { - paimonCatalog().dropView(toIdentifier(ident, paimonCatalogName()), ignoreIfExists); + paimonCatalog().dropView(toIdentifier(ident, paimonCatalogName()), ignoreIfNotExists); } catch (Catalog.ViewNotExistException e) { throw new RuntimeException("view not exists: " + ident, e); }
