Module Values_0.BooleanColumnStatisticsDataSource

Defines column statistics supported for Boolean data columns.

Sourcetype nonrec t = {
  1. numberOfTrues : NonNegativeLong.t;
    (*

    The number of true values in the column.

    *)
  2. numberOfFalses : NonNegativeLong.t;
    (*

    The number of false values in the column.

    *)
  3. numberOfNulls : NonNegativeLong.t;
    (*

    The number of null values in the column.

    *)
}
Sourceval context_ : string
Sourceval make : numberOfTrues:NonNegativeLong.t -> numberOfFalses:NonNegativeLong.t -> numberOfNulls:NonNegativeLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of NonNegativeLong.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