Module Values_1.ColumnStatisticsSource

Represents the generated column-level statistics for a table or partition.

Sourcetype nonrec t = {
  1. columnName : Values_0.NameString.t;
    (*

    Name of column which statistics belong to.

    *)
  2. columnType : TypeString.t;
    (*

    The data type of the column.

    *)
  3. analyzedTime : Values_0.Timestamp.t;
    (*

    The timestamp of when column statistics were generated.

    *)
  4. statisticsData : ColumnStatisticsData.t;
    (*

    A ColumnStatisticData object that contains the statistics data values.

    *)
}
Sourceval context_ : string
Sourceval make : columnName:Values_0.NameString.t -> columnType:TypeString.t -> analyzedTime:Values_0.Timestamp.t -> statisticsData:ColumnStatisticsData.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.NameString.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of Double.t | `Long of Awso.Import.Int64.t | `Structure of (string * [> `Blob of Values_0.Blob.t | `Integer of Values_0.Integer.t ]) list | `Timestamp of Values_0.Timestamp.t ]) list ]) list | `Timestamp of Values_0.Timestamp.t ]) 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