Sha256: ff991d73b353378d20b636b5c8c5a7a541b64d50ded44d281fcb0d494411fff6

Contents?: true

Size: 794 Bytes

Versions: 193

Compression:

Stored size: 794 Bytes

Contents

# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    module PostgreSQL
      module OID # :nodoc:
        class Vector < Type::Value # :nodoc:
          attr_reader :delim, :subtype

          # +delim+ corresponds to the `typdelim` column in the pg_types
          # table.  +subtype+ is derived from the `typelem` column in the
          # pg_types table.
          def initialize(delim, subtype)
            @delim   = delim
            @subtype = subtype
          end

          # FIXME: this should probably split on +delim+ and use +subtype+
          # to cast the values.  Unfortunately, the current Rails behavior
          # is to just return the string.
          def cast(value)
            value
          end
        end
      end
    end
  end
end

Version data entries

193 entries across 188 versions & 16 rubygems

Version Path
activerecord-7.1.3.4 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.0.8.4 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-6.1.7.8 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.2.0.beta1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.3.2 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.3.1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.0.8.1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-6.1.7.7 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.3 lib/active_record/connection_adapters/postgresql/oid/vector.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.2.3/lib/active_record/connection_adapters/postgresql/oid/vector.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-6.1.6.1/lib/active_record/connection_adapters/postgresql/oid/vector.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/activerecord-7.0.3.1/lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.2 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.0 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.0.rc2 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.0.rc1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.1.0.beta1 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.0.8 lib/active_record/connection_adapters/postgresql/oid/vector.rb
activerecord-7.0.7.2 lib/active_record/connection_adapters/postgresql/oid/vector.rb