Selecto.Advanced.LateralJoin.Spec
(Selecto v0.4.5)
Copy Markdown
Specification for a LATERAL join operation.
Summary
Types
@type correlation_ref() :: {:ref, String.t()}
@type join_type() :: :left | :inner | :right | :full
@type t() :: %Selecto.Advanced.LateralJoin.Spec{ alias: String.t(), correlation_refs: [correlation_ref()], id: String.t(), join_type: join_type(), subquery_builder: subquery_builder() | nil, table_function: table_function() | nil, validated: boolean() }