Class: SQLParser::Statement::SearchCondition

Inherits:
Node
  • Object
show all
Defined in:
lib/sql-parser/statement.rb

Direct Known Subclasses

And, Or

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#accept, #to_sql

Constructor Details

#initialize(left, right) ⇒ SearchCondition

Returns a new instance of SearchCondition.



241
242
243
244
# File 'lib/sql-parser/statement.rb', line 241

def initialize(left, right)
  @left = left
  @right = right
end

Instance Attribute Details

#leftObject (readonly)

Returns the value of attribute left.



246
247
248
# File 'lib/sql-parser/statement.rb', line 246

def left
  @left
end

#rightObject (readonly)

Returns the value of attribute right.



247
248
249
# File 'lib/sql-parser/statement.rb', line 247

def right
  @right
end