Module Values_1.IcebergPartitionSpecSource

Defines the partitioning specification for an Iceberg table, determining how table data will be organized and partitioned for optimal query performance.

Sourcetype nonrec t = {
  1. fields : IcebergPartitionSpecFieldList.t;
    (*

    The list of partition fields that define how the table data should be partitioned, including source fields and their transformations.

    *)
  2. specId : Values_0.Integer.t option;
    (*

    The unique identifier for this partition specification within the Iceberg table's metadata history.

    *)
}
Sourceval context_ : string
Sourceval make : ?specId:??? -> fields:IcebergPartitionSpecFieldList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of IcebergTransformString.t ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t