PGArray subclass for handling char/varchar/text arrays.
By default, use a text array. If char is given without a size, use varchar instead, as otherwise Postgres assumes length of 1, which is likely to cause data loss.
# File lib/sequel/extensions/pg_array.rb, line 419 419: def array_type 420: case (c = super) 421: when nil 422: TEXT 423: when CHAR, :char 424: VARCHAR 425: else 426: c 427: end 428: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.