Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
仟弋 committed Dec 6, 2024
1 parent 5611385 commit 62736eb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public class TestChangelogDataReadWrite {
private static final RowType KEY_TYPE =
new RowType(singletonList(new DataField(0, "k", new BigIntType())));
private static final RowType VALUE_TYPE =
new RowType(singletonList(new DataField(0, "v", new BigIntType())));
new RowType(singletonList(new DataField(1, "v", new BigIntType())));
private static final RowType PARTITION_TYPE =
new RowType(singletonList(new DataField(0, "p", new IntType())));
private static final Comparator<InternalRow> COMPARATOR =
Expand All @@ -87,7 +87,7 @@ public List<DataField> keyFields(TableSchema schema) {
@Override
public List<DataField> valueFields(TableSchema schema) {
return Collections.singletonList(
new DataField(0, "v", new org.apache.paimon.types.BigIntType(false)));
new DataField(1, "v", new org.apache.paimon.types.BigIntType(false)));
}
};

Expand Down

0 comments on commit 62736eb

Please sign in to comment.