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

lzljs3620320 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 d1e733a9f3 [hotfix] Add documentation in Catalog
d1e733a9f3 is described below

commit d1e733a9f335ef34deec0b2c0431511b1785df85
Author: JingsongLi <[email protected]>
AuthorDate: Fri May 16 17:50:47 2025 +0800

    [hotfix] Add documentation in Catalog
---
 .../src/main/java/org/apache/paimon/catalog/Catalog.java | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java 
b/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java
index 446a93b783..1afcef29c8 100644
--- a/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java
+++ b/paimon-core/src/main/java/org/apache/paimon/catalog/Catalog.java
@@ -525,7 +525,7 @@ public interface Catalog extends AutoCloseable {
      *
      * @param view identifier of the view to alter
      * @param viewChanges - changes of view
-     * @param ignoreIfNotExists
+     * @param ignoreIfNotExists Flag to specify behavior when the view does 
not exist
      * @throws ViewNotExistException if the view does not exist
      * @throws DialectAlreadyExistException if the dialect already exists
      * @throws DialectNotExistException if the dialect not exists
@@ -767,9 +767,9 @@ public interface Catalog extends AutoCloseable {
     /**
      * Drop function.
      *
-     * @param identifier
-     * @param ignoreIfNotExists
-     * @throws FunctionNotExistException
+     * @param identifier path of the function to be created
+     * @param ignoreIfNotExists Flag to specify behavior when the function 
does not exist
+     * @throws FunctionNotExistException if the function doesn't exist
      */
     void dropFunction(Identifier identifier, boolean ignoreIfNotExists)
             throws FunctionNotExistException;
@@ -777,10 +777,10 @@ public interface Catalog extends AutoCloseable {
     /**
      * Alter function.
      *
-     * @param identifier
-     * @param changes
-     * @param ignoreIfNotExists
-     * @throws FunctionNotExistException
+     * @param identifier path of the function to be created
+     * @param changes the function changes
+     * @param ignoreIfNotExists Flag to specify behavior when the function 
does not exist
+     * @throws FunctionNotExistException if the function doesn't exist
      */
     void alterFunction(
             Identifier identifier, List<FunctionChange> changes, boolean 
ignoreIfNotExists)

Reply via email to