Module Values_0.SkewedInfoSource

Specifies skewed values in a table. Skewed values are those that occur with very high frequency.

Sourcetype nonrec t = {
  1. skewedColumnNames : NameStringList.t option;
    (*

    A list of names of columns that contain skewed values.

    *)
  2. skewedColumnValues : ColumnValueStringList.t option;
    (*

    A list of values that appear so frequently as to be considered skewed.

    *)
  3. skewedColumnValueLocationMaps : LocationMap.t option;
    (*

    A mapping of skewed values to the columns that contain them.

    *)
}
Sourceval make : ?skewedColumnNames:??? -> ?skewedColumnValues:??? -> ?skewedColumnValueLocationMaps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NameString.t ] list | `Map of ([> `String of ColumnValuesString.t ] * [> `String of ColumnValuesString.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