Module Values_1.StringColumnStatisticsDataSource

Defines column statistics supported for character sequence data values.

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

    The size of the longest string in the column.

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

    The average string length 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 : maximumLength:Values_0.NonNegativeLong.t -> averageLength:Values_0.NonNegativeDouble.t -> numberOfNulls:Values_0.NonNegativeLong.t -> numberOfDistinctValues:Values_0.NonNegativeLong.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Values_0.NonNegativeDouble.t | `Long of Values_0.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