You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2022/05/25 03:52:00 UTC

[calcite] branch main updated: [CALCITE-5165] Improve javadoc

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

jhyde pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
     new 3feb0adda9 [CALCITE-5165] Improve javadoc
3feb0adda9 is described below

commit 3feb0adda9fc989ef1b157521ee4e4a9a698caec
Author: zhangyue <zh...@sogou-inc.com>
AuthorDate: Sun May 22 22:23:03 2022 +0800

    [CALCITE-5165] Improve javadoc
    
    Close apache/calcite#2814
---
 core/src/main/java/org/apache/calcite/sql/SqlNode.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/src/main/java/org/apache/calcite/sql/SqlNode.java b/core/src/main/java/org/apache/calcite/sql/SqlNode.java
index 56266081ab..5626084d4f 100644
--- a/core/src/main/java/org/apache/calcite/sql/SqlNode.java
+++ b/core/src/main/java/org/apache/calcite/sql/SqlNode.java
@@ -41,8 +41,8 @@ import java.util.stream.Collector;
 /**
  * A <code>SqlNode</code> is a SQL parse tree.
  *
- * <p>It may be an
- * {@link SqlOperator operator}, {@link SqlLiteral literal},
+ * <p>It may be a
+ * {@link SqlCall call}, {@link SqlLiteral literal},
  * {@link SqlIdentifier identifier}, and so forth.
  */
 public abstract class SqlNode implements Cloneable {