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 825 825: def initialize(on, *args) 826: @on = on 827: super(*args) 828: end
[Validate]