Skip to content

Commit

Permalink
[BugFix]Fix paimon table struct type (backport #30817) (#30874)
Browse files Browse the repository at this point in the history
Co-authored-by: leoyy0316 <105328124+leoyy0316@users.noreply.github.com>
  • Loading branch information
mergify[bot] and leoyy0316 authored Sep 12, 2023
1 parent 997d43b commit 5caa886
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 5caa886

Please sign in to comment.