Module Values.QueryRuntimeStatisticsRowsSource

Statistics such as input rows and bytes read by the query, rows and bytes output by the query, and the number of rows written by the query.

Sourcetype nonrec t = {
  1. inputRows : Long.t option;
    (*

    The number of rows read to execute the query.

    *)
  2. inputBytes : Long.t option;
    (*

    The number of bytes read to execute the query.

    *)
  3. outputBytes : Long.t option;
    (*

    The number of bytes returned by the query.

    *)
  4. outputRows : Long.t option;
    (*

    The number of rows returned by the query.

    *)
}
Sourceval make : ?inputRows:??? -> ?inputBytes:??? -> ?outputBytes:??? -> ?outputRows:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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