Values.SchemaDefinitionSourceDescribes the schema of the table.
type nonrec t = {allColumns : ColumnDefinitionList.t;The regular columns of the table.
*)partitionKeys : PartitionKeyList.t;The columns that are part of the partition key of the table .
*)clusteringKeys : ClusteringKeyList.t option;The columns that are part of the clustering key of the table.
*)staticColumns : StaticColumnList.t option;The columns that have been defined as STATIC. Static columns store values that are shared by all rows in the same partition.
*)}val make :
?clusteringKeys:??? ->
?staticColumns:??? ->
allColumns:ColumnDefinitionList.t ->
partitionKeys:PartitionKeyList.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Structure of
(string * [> `Enum of string | `String of GenericString.t ])
list ]
list ])
list ]