Class: Bmg::Sql::Processor::Join
- Inherits:
-
Bmg::Sql::Processor
- Object
- Sexpr::Rewriter
- Bmg::Sql::Processor
- Bmg::Sql::Processor::Join
- Includes:
- JoinSupport
- Defined in:
- lib/bmg/sql/processor/join.rb
Constant Summary
Constants inherited from Bmg::Sql::Processor
Instance Attribute Summary collapse
-
#on ⇒ Object
readonly
Returns the value of attribute on.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Attributes inherited from Bmg::Sql::Processor
Instance Method Summary collapse
- #call(sexpr) ⇒ Object
-
#initialize(right, on, options, builder) ⇒ Join
constructor
A new instance of Join.
Methods included from JoinSupport
Methods inherited from Bmg::Sql::Processor
#on_select_exp, #on_set_operator, #on_with_exp
Constructor Details
#initialize(right, on, options, builder) ⇒ Join
Returns a new instance of Join.
7 8 9 10 11 12 |
# File 'lib/bmg/sql/processor/join.rb', line 7 def initialize(right, on, , builder) super(builder) @right = right @on = on @options = end |
Instance Attribute Details
#on ⇒ Object (readonly)
Returns the value of attribute on.
13 14 15 |
# File 'lib/bmg/sql/processor/join.rb', line 13 def on @on end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
13 14 15 |
# File 'lib/bmg/sql/processor/join.rb', line 13 def @options end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
13 14 15 |
# File 'lib/bmg/sql/processor/join.rb', line 13 def right @right end |