Skip to content

Commit

Permalink
[Backport][BugFix]Fix paimon table struct type (StarRocks#30817)
Browse files Browse the repository at this point in the history
Signed-off-by: leoyy0316 <571684903@qq.com>
(cherry picked from commit 23221f3)
  • Loading branch information
wangriyu.wry authored and miomiocat committed Feb 26, 2024
1 parent ae79c1b commit 7f27405
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public void unpackStruct(List<Integer> structFieldIndex, List<ColumnValue> value
DataField dataField = fields.get(idx);
Object o = InternalRowUtils.get(array, i, dataField.type());
if (o != null) {
cv = new PaimonColumnValue(0, dataField.type());
cv = new PaimonColumnValue(o, dataField.type());
}
}
values.add(cv);
Expand Down

0 comments on commit 7f27405

Please sign in to comment.