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

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


The following commit(s) were added to refs/heads/master by this push:
     new e8ff8b8d18 [spark] fix dropView typo (#6644)
e8ff8b8d18 is described below

commit e8ff8b8d18120e75afefb2101537316b19e26827
Author: Yann Byron <[email protected]>
AuthorDate: Thu Nov 20 23:06:25 2025 +0800

    [spark] fix dropView typo (#6644)
---
 .../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);
         }

Reply via email to