Values_1.JoinInstructionSourceThe instructions associated with a join.
type nonrec t = {leftOperand : LogicalTableId.t;The operand on the left side of a join.
*)rightOperand : LogicalTableId.t;The operand on the right side of a join.
*)leftJoinKeyProperties : JoinKeyProperties.t option;Join key properties of the left operand.
*)rightJoinKeyProperties : JoinKeyProperties.t option;Join key properties of the right operand.
*)type_ : JoinType.t;The type of join that it is.
*)onClause : OnClause.t;The join instructions provided in the ON clause of a join.
*)}val make :
?leftJoinKeyProperties:??? ->
?rightJoinKeyProperties:??? ->
leftOperand:LogicalTableId.t ->
rightOperand:LogicalTableId.t ->
type_:JoinType.t ->
onClause:OnClause.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of LogicalTableId.t
| `Structure of (string * [> `Boolean of Values_0.Boolean.t ]) list ])
list ]