Class Sequel::SQL::JoinOnClause
In: lib/sequel/sql.rb
lib/sequel/extensions/eval_inspect.rb
Parent: JoinClause

Represents an SQL JOIN clause with ON conditions.

Methods

new  

Attributes

on  [R]  The conditions for the join

Public Class methods

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

[Source]

      # File lib/sequel/sql.rb, line 1440
1440:       def initialize(on, *args)
1441:         @on = on
1442:         super(*args)
1443:       end

[Validate]