Class: Sequel::SQL::JoinOnClause

Inherits:
JoinClause show all
Defined in:
lib/sequel/sql.rb

Overview

Represents an SQL JOIN table ON conditions clause.

Instance Attribute Summary collapse

Attributes inherited from JoinClause

#join_type, #table, #table_alias

Instance Method Summary collapse

Methods inherited from Expression

#==, attr_reader, comparison_attrs, #eql?, #hash, #lit, #sql_literal

Constructor Details

#initialize(on, *args) ⇒ JoinOnClause

Create an object with the ON conditions and call super with the remaining args.



690
691
692
693
# File 'lib/sequel/sql.rb', line 690

def initialize(on, *args)
  @on = on
  super(*args)
end

Instance Attribute Details

#onObject (readonly)

The conditions for the join



686
687
688
# File 'lib/sequel/sql.rb', line 686

def on
  @on
end