class Sequel::SQL::JoinUsingClause
Represents an SQL
JOIN clause with USING conditions.
Attributes
The columns that appear in both tables that should be equal for the conditions to match.
Public Class Methods
Source
# File lib/sequel/sql.rb 1599 def initialize(cols, *args) 1600 @using = cols 1601 super(*args) 1602 end
Create an object with the given USING 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 159 def inspect_args 160 [:using, :join_type, :table_expr] 161 end
JoinOnClause’s initializer takes the using argument as the first argument instead of the last.