class Sequel::SQL::JoinOnClause
Represents an SQL
JOIN clause with ON conditions.
Attributes
The conditions for the join
Public Class Methods
Source
# File lib/sequel/sql.rb 1589 def initialize(on, *args) 1590 @on = on 1591 super(*args) 1592 end
Create an object with the ON conditions and call super with the remaining args.
Calls superclass method
Sequel::SQL::JoinClause::new
Private Instance Methods
Source
# File lib/sequel/extensions/eval_inspect.rb 149 def inspect_args 150 [:on, :join_type, :table_expr] 151 end
JoinOnClause’s initializer takes the on argument as the first argument instead of the last.