Represents an SQL JOIN clause with ON conditions.
The conditions for the join
Create an object with the ON conditions and call super with the remaining args.
# File lib/sequel/sql.rb, line 1427 def initialize(on, *args) @on = on super(*args) end
JoinOnClause's initializer takes the on argument as the first argument instead of the last.
# File lib/sequel/extensions/eval_inspect.rb, line 147 def inspect_args [:on, :join_type, :table_expr] end