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