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.



297
298
299
300
301
# File 'lib/sql-parser/statement.rb', line 297

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

Instance Attribute Details

#leftObject (readonly)

Returns the value of attribute left.



303
304
305
# File 'lib/sql-parser/statement.rb', line 303

def left
  @left
end

#maxObject (readonly)

Returns the value of attribute max.



305
306
307
# File 'lib/sql-parser/statement.rb', line 305

def max
  @max
end

#minObject (readonly)

Returns the value of attribute min.



304
305
306
# File 'lib/sql-parser/statement.rb', line 304

def min
  @min
end