Current section
Files
Jump to
Current section
Files
src/galchemy@ast@join.erl
-module(galchemy@ast@join).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src\\galchemy\\ast\\join.gleam").
-export_type([join/0, join_kind/0]).
-type join() :: {join,
join_kind(),
galchemy@ast@schema:table(),
galchemy@ast@predicate:predicate()}.
-type join_kind() :: inner_join | left_join.