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 971 971: def initialize(f, sub) 972: @f, @sub = f, sub 973: end
Create a new Subscript appending the given subscript(s) the the current array of subscripts.
# File lib/sequel/sql.rb, line 977 977: def |(sub) 978: Subscript.new(@f, @sub + Array(sub)) 979: end
[Validate]