Class Sequel::Postgres::PGDecimalArray
In: lib/sequel/extensions/pg_array.rb
Parent: PGArray

PGArray subclass for decimal/numeric types. Uses the general parser as the JSON parser cannot handle arbitrary precision numbers.

Methods

Constants

ARRAY_TYPE = 'decimal'.freeze

Public Instance methods

Use the decimal type by default.

[Source]

     # File lib/sequel/extensions/pg_array.rb, line 379
379:       def array_type
380:         super || ARRAY_TYPE
381:       end

[Validate]