Skip to content

Commit

Permalink
fix vio
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyu committed Oct 30, 2024
1 parent 33ff495 commit 8400ba8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ public FullCacheLookupTable(Context context) {
projectedType = builder.build();
context = context.copy(table.rowType().getFieldIndices(projectedType.getFieldNames()));
this.userDefinedSeqComparator =
UserDefinedSeqComparator.create(projectedType, sequenceFields, coreOptions.sequenceFieldSortOrderIsAscending());
UserDefinedSeqComparator.create(
projectedType,
sequenceFields,
coreOptions.sequenceFieldSortOrderIsAscending());
this.appendUdsFieldNumber = appendUdsFieldNumber.get();
} else {
this.userDefinedSeqComparator = null;
Expand Down

0 comments on commit 8400ba8

Please sign in to comment.