File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
paimon-core/src/main/java/org/apache/paimon/iceberg/manifest Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff 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 ()));
You can’t perform that action at this time.
0 commit comments