Module Values.TableReferenceSource

A pointer to the dataset that underlies this table.

Sourcetype nonrec t = {
  1. glue : GlueTableReference.t option;
    (*

    If present, a reference to the Glue table referred to by this table reference.

    *)
  2. snowflake : SnowflakeTableReference.t option;
    (*

    If present, a reference to the Snowflake table referred to by this table reference.

    *)
  3. athena : AthenaTableReference.t option;
    (*

    If present, a reference to the Athena table referred to by this table reference.

    *)
}
Sourceval make : ?glue:??? -> ?snowflake:??? -> ?athena:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of GlueTableName.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of ColumnName.t ]) list ] list ]) list ]) 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