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 1520 1520: def initialize(on, *args) 1521: @on = on 1522: super(*args) 1523: end
[Validate]