Represents an SQL
JOIN clause with ON conditions.
Attributes
on | [R] |
The conditions for the join |
Public Class methods
new(on, *args)
Create an object with the ON conditions and call super with the remaining args.
[show source]
# File lib/sequel/sql.rb 1583 def initialize(on, *args) 1584 @on = on 1585 super(*args) 1586 end