in paimon-web-api/src/main/java/org/apache/paimon/web/api/table/FileTableMetadata.java [43:72]
public FileTableMetadata(
String partition,
Integer bucket,
String filePath,
String fileFormat,
Long schemaId,
Integer level,
Long recordCount,
Long fileSizeInBytes,
String minKey,
String maxKey,
String nullValueCounts,
String minValueStats,
String maxValueStats,
LocalDateTime creationTime) {
this.partition = partition;
this.bucket = bucket;
this.filePath = filePath;
this.fileFormat = fileFormat;
this.schemaId = schemaId;
this.level = level;
this.recordCount = recordCount;
this.fileSizeInBytes = fileSizeInBytes;
this.minKey = minKey;
this.maxKey = maxKey;
this.nullValueCounts = nullValueCounts;
this.minValueStats = minValueStats;
this.maxValueStats = maxValueStats;
this.creationTime = creationTime;
}