Module Values_1.DecimalColumnStatisticsDataSource

Defines column statistics supported for fixed-point number data columns.

Sourcetype nonrec t = {
  1. minimumValue : DecimalNumber.t option;
    (*

    The lowest value in the column.

    *)
  2. maximumValue : DecimalNumber.t option;
    (*

    The highest value in the column.

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

    The number of null values in the column.

    *)
  4. numberOfDistinctValues : Values_0.NonNegativeLong.t;
    (*

    The number of distinct values in a column.

    *)
}
Sourceval context_ : string
Sourceval make : ?minimumValue:??? -> ?maximumValue:??? -> numberOfNulls:Values_0.NonNegativeLong.t -> numberOfDistinctValues:Values_0.NonNegativeLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Values_0.NonNegativeLong.t | `Structure of (string * [> `Blob of Values_0.Blob.t | `Integer of Values_0.Integer.t ]) 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