Builder

class Builder

Properties

Link copied to clipboard
var doc: String?

Optional documentation or description text that provides additional context about the purpose and usage of this field.

Link copied to clipboard
var id: Int

The unique identifier assigned to this field within the Iceberg table schema, used for schema evolution and field tracking.

Link copied to clipboard

Default value used to populate the field's value for all records that were written before the field was added to the schema. This enables backward compatibility when adding new fields to existing Iceberg tables.

Link copied to clipboard
var name: String?

The name of the field as it appears in the table schema and query operations.

Link copied to clipboard

Indicates whether this field is required (non-nullable) or optional (nullable) in the table schema.

Link copied to clipboard

The data type definition for this field, specifying the structure and format of the data it contains.

Link copied to clipboard

Default value used to populate the field's value for any records written after the field was added to the schema, if the writer does not supply the field's value. This can be changed through schema evolution.