Represents an SQL JOIN clause with ON conditions.
Create an object with the ON conditions and call super with the remaining args.
[Source]
# File lib/sequel/sql.rb, line 788 788: def initialize(on, *args) 789: @on = on 790: super(*args) 791: end
[Validate]