This is an automated email from the ASF dual-hosted git repository.
jiajunxie 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 34b96765fc [MINOR][JAVADOC] Updated javadoc instructions for
RelColumnOrigin#isDerived method
34b96765fc is described below
commit 34b96765fc2447bb3028942bbef2c056522580f7
Author: zhujiang.97 <[email protected]>
AuthorDate: Fri Mar 17 20:11:17 2023 +0800
[MINOR][JAVADOC] Updated javadoc instructions for RelColumnOrigin#isDerived
method
---
core/src/main/java/org/apache/calcite/rel/metadata/RelColumnOrigin.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/src/main/java/org/apache/calcite/rel/metadata/RelColumnOrigin.java
b/core/src/main/java/org/apache/calcite/rel/metadata/RelColumnOrigin.java
index 28aa144d5a..974501b50b 100644
--- a/core/src/main/java/org/apache/calcite/rel/metadata/RelColumnOrigin.java
+++ b/core/src/main/java/org/apache/calcite/rel/metadata/RelColumnOrigin.java
@@ -62,7 +62,7 @@ public class RelColumnOrigin {
/**
* Consider the query <code>select a+b as c, d as e from t</code>. The
* output column c has two origins (a and b), both of them derived. The
- * output column d as one origin (c), which is not derived.
+ * output column e has one origin (d), which is not derived.
*
* @return false if value taken directly from column in origin table; true
* otherwise