Package org.apache.iceberg
Interface BlobMetadata
- All Known Implementing Classes:
GenericBlobMetadata
public interface BlobMetadata
A metadata about a statistics or indices blob.
-
Method Summary
Modifier and TypeMethodDescriptionfields()
Ordered list of fields the blob was calculated from.Additional properties of the blob, specific to the blob type.long
ID of the Iceberg table's snapshot the blob was computed fromlong
Sequence number of the Iceberg table's snapshot the blob was computed fromtype()
Type of the blob.
-
Method Details
-
type
String type()Type of the blob. Never null -
sourceSnapshotId
long sourceSnapshotId()ID of the Iceberg table's snapshot the blob was computed from -
sourceSnapshotSequenceNumber
long sourceSnapshotSequenceNumber()Sequence number of the Iceberg table's snapshot the blob was computed from -
fields
Ordered list of fields the blob was calculated from. Never null -
properties
Additional properties of the blob, specific to the blob type. Never null
-