Module Values_0.SqlAliasSource

Represents a single entry in the list of values for SqlAliases.

Sourcetype nonrec t = {
  1. from : NodeId.t;
    (*

    A table, or a column in a table.

    *)
  2. alias : EnclosedInStringPropertyWithQuote.t;
    (*

    A temporary name given to a table, or a column in a table.

    *)
}
Sourceval context_ : string
Sourceval make : from:NodeId.t -> alias:EnclosedInStringPropertyWithQuote.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NodeId.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