Represents an SQL array. Added so it is possible to deal with a ruby array of all two pairs as an SQL array instead of an ordered hash-like conditions specifier.
Create an object with the given array.
[Source]
# File lib/sequel/sql.rb, line 810 810: def initialize(array) 811: @array = array 812: end
[Validate]