Skip to content

Commit 0eb12f1

Browse files
committed
fix
1 parent 48624b4 commit 0eb12f1

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

paimon-core/src/main/java/org/apache/paimon/iceberg/manifest/IcebergDataFileMeta.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ public static Content fromId(int id) {
8787
private final Long contentOffset;
8888
private final Long contentSizeInBytes;
8989

90-
// only used for iceberg migrate
91-
private long schemaId = 0;
92-
9390
IcebergDataFileMeta(
9491
Content content,
9592
String filePath,
@@ -279,15 +276,6 @@ public Long contentSizeInBytes() {
279276
return contentSizeInBytes;
280277
}
281278

282-
public long schemaId() {
283-
return schemaId;
284-
}
285-
286-
public IcebergDataFileMeta withSchemaId(long schemaId) {
287-
this.schemaId = schemaId;
288-
return this;
289-
}
290-
291279
public static RowType schema(RowType partitionType) {
292280
List<DataField> fields = new ArrayList<>();
293281
fields.add(new DataField(134, "content", DataTypes.INT().notNull()));

0 commit comments

Comments
 (0)