Skip to content

Commit

Permalink
[BugFix]Fix paimon table struct type (#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
leoyy0316 authored and mergify[bot] committed Sep 12, 2023
1 parent 1aad051 commit 0db676e
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 0db676e

Please sign in to comment.