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 76f0480d5 [minor] Fix method annotation in SchemaEvolutionUtil (#3419)
76f0480d5 is described below
commit 76f0480d51e52201783588d26bf3b4c9de9f8cf0
Author: wangwj <[email protected]>
AuthorDate: Wed May 29 19:11:45 2024 +0800
[minor] Fix method annotation in SchemaEvolutionUtil (#3419)
---
.../src/main/java/org/apache/paimon/schema/SchemaEvolutionUtil.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/paimon-core/src/main/java/org/apache/paimon/schema/SchemaEvolutionUtil.java
b/paimon-core/src/main/java/org/apache/paimon/schema/SchemaEvolutionUtil.java
index 8fa41bebf..6b724c74f 100644
---
a/paimon-core/src/main/java/org/apache/paimon/schema/SchemaEvolutionUtil.java
+++
b/paimon-core/src/main/java/org/apache/paimon/schema/SchemaEvolutionUtil.java
@@ -65,7 +65,8 @@ public class SchemaEvolutionUtil {
* </ul>
*
* <p>We can get the index mapping [0, -1, 1], in which 0 is the index of
table field 1->c in
- * data fields, 1 is the index of 6->b in data fields and 1 is the index
of 3->a in data fields.
+ * data fields, -1 is the index of 6->b in data fields and 1 is the index
of 3->a in data
+ * fields.
*
* <p>/// TODO should support nest index mapping when nest schema
evolution is supported.
*