Method: Sequel::SQL::JoinClause#initialize

Defined in:
lib/sequel/sql.rb

#initialize(join_type, table_expr) ⇒ JoinClause

Create an object with the given join_type and table expression.



1548
1549
1550
1551
1552
# File 'lib/sequel/sql.rb', line 1548

def initialize(join_type, table_expr)
  @join_type = join_type
  @table_expr = table_expr
  freeze
end