Module Values_0.BinaryColumnStatisticsDataSource

Defines column statistics supported for bit sequence data values.

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

    The size of the longest bit sequence in the column.

    *)
  2. averageLength : NonNegativeDouble.t;
    (*

    The average bit sequence length in the column.

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

    The number of null values in the column.

    *)
}
Sourceval context_ : string
Sourceval make : maximumLength:NonNegativeLong.t -> averageLength:NonNegativeDouble.t -> numberOfNulls:NonNegativeLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of NonNegativeDouble.t | `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