Module Values.QueryExecutionContextSource

The database and data catalog context in which the query execution occurs.

Sourcetype nonrec t = {
  1. database : DatabaseString.t option;
    (*

    The name of the database used in the query execution. The database must exist in the catalog.

    *)
  2. catalog : CatalogNameString.t option;
    (*

    The name of the data catalog used in the query execution.

    *)
}
Sourceval make : ?database:??? -> ?catalog:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DatabaseString.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