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 586 586: def initialize(on, *args) 587: @on = on 588: super(*args) 589: end
[Validate]