Class: Sequel::SQL::JoinOnClause

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

Overview

Represents an SQL JOIN clause with ON conditions.

Instance Attribute Summary collapse

Attributes inherited from JoinClause

#join_type, #table_expr

Instance Method Summary collapse

Methods inherited from JoinClause

#column_aliases, #table, #table_alias

Methods inherited from Expression

#==, attr_reader, #eql?, #hash, inherited, #inspect, #lit, #sql_literal

Constructor Details

#initialize(on, *args) ⇒ JoinOnClause

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



1472
1473
1474
1475
# File 'lib/sequel/sql.rb', line 1472

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

Instance Attribute Details

#onObject (readonly)

The conditions for the join



1468
1469
1470
# File 'lib/sequel/sql.rb', line 1468

def on
  @on
end