Class: Sequel::SQL::Subscript

Inherits:
GenericExpression show all
Defined in:
lib/sequel/sql.rb

Overview

Represents an SQL array access, with multiple possible arguments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from BooleanMethods

#~

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from OrderMethods

#asc, #desc

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from AliasMethods

#as

Methods inherited from Expression

#lit

Constructor Details

#initialize(f, sub) ⇒ Subscript

Set the array column and subscripts to the given arguments



766
767
768
# File 'lib/sequel/sql.rb', line 766

def initialize(f, sub)
  @f, @sub = f, sub
end

Instance Attribute Details

#fObject (readonly)

The SQL array column



760
761
762
# File 'lib/sequel/sql.rb', line 760

def f
  @f
end

#subObject (readonly)

The array of subscripts to use (should be an array of numbers)



763
764
765
# File 'lib/sequel/sql.rb', line 763

def sub
  @sub
end

Instance Method Details

#|(sub) ⇒ Object

Create a new subscript appending the given subscript(s) the the current array of subscripts.



772
773
774
# File 'lib/sequel/sql.rb', line 772

def |(sub)
  Subscript.new(@f, @sub + Array(sub))
end