Represents an SQL array access, with multiple possible arguments.
Set the array column and subscripts to the given arguments
[Source]
# File lib/sequel/sql.rb, line 872 872: def initialize(f, sub) 873: @f, @sub = f, sub 874: end
Create a new subscript appending the given subscript(s) the the current array of subscripts.
# File lib/sequel/sql.rb, line 878 878: def |(sub) 879: Subscript.new(@f, @sub + Array(sub)) 880: end
[Validate]