Class: SQLParser::Statement::Between

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#accept, #to_sql

Constructor Details

#initialize(left, min, max) ⇒ Between

Returns a new instance of Between.



339
340
341
342
343
# File 'lib/sql-parser/statement.rb', line 339

def initialize(left, min, max)
  @left = left
  @min = min
  @max = max
end

Instance Attribute Details

#leftObject (readonly)

Returns the value of attribute left.



345
346
347
# File 'lib/sql-parser/statement.rb', line 345

def left
  @left
end

#maxObject (readonly)

Returns the value of attribute max.



347
348
349
# File 'lib/sql-parser/statement.rb', line 347

def max
  @max
end

#minObject (readonly)

Returns the value of attribute min.



346
347
348
# File 'lib/sql-parser/statement.rb', line 346

def min
  @min
end