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