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 1172 1172: def initialize(on, *args) 1173: @on = on 1174: super(*args) 1175: end
[Validate]