class Sequel::Postgres::PGFloatArray

  1. lib/sequel/extensions/pg_array.rb
Parent: Postgres

PGArray subclass for handling real/double precision arrays.

Methods

Public Instance

  1. array_type

Constants

ARRAY_TYPE = 'double precision'.freeze  

Public Instance methods

array_type ()

Use the double precision type by default.

[show source]
# File lib/sequel/extensions/pg_array.rb, line 395
def array_type
  super || ARRAY_TYPE
end