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 1021 1021: def initialize(f, sub) 1022: @f, @sub = f, sub 1023: end
Create a new Subscript appending the given subscript(s) the the current array of subscripts.
# File lib/sequel/sql.rb, line 1027 1027: def |(sub) 1028: Subscript.new(@f, @sub + Array(sub)) 1029: end
[Validate]