Module Values_1.JoinInstructionSource

The instructions associated with a join.

Sourcetype nonrec t = {
  1. leftOperand : LogicalTableId.t;
    (*

    The operand on the left side of a join.

    *)
  2. rightOperand : LogicalTableId.t;
    (*

    The operand on the right side of a join.

    *)
  3. leftJoinKeyProperties : JoinKeyProperties.t option;
    (*

    Join key properties of the left operand.

    *)
  4. rightJoinKeyProperties : JoinKeyProperties.t option;
    (*

    Join key properties of the right operand.

    *)
  5. type_ : JoinType.t;
    (*

    The type of join that it is.

    *)
  6. onClause : OnClause.t;
    (*

    The join instructions provided in the ON clause of a join.

    *)
}
Sourceval context_ : string
Sourceval make : ?leftJoinKeyProperties:??? -> ?rightJoinKeyProperties:??? -> leftOperand:LogicalTableId.t -> rightOperand:LogicalTableId.t -> type_:JoinType.t -> onClause:OnClause.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LogicalTableId.t | `Structure of (string * [> `Boolean of Values_0.Boolean.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