Module: Neighbor::PostgreSQL
- Defined in:
- lib/neighbor/postgresql.rb
Defined Under Namespace
Modules: RegisterTypes
Class Method Summary collapse
Class Method Details
.initialize! ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/neighbor/postgresql.rb', line 3 def self.initialize! require_relative "type/cube" require_relative "type/halfvec" require_relative "type/sparsevec" require_relative "type/vector" require "active_record/connection_adapters/postgresql_adapter" # ensure schema can be dumped ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES[:cube] = {name: "cube"} ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES[:halfvec] = {name: "halfvec"} ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES[:sparsevec] = {name: "sparsevec"} ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES[:vector] = {name: "vector"} # ensure schema can be loaded ActiveRecord::ConnectionAdapters::TableDefinition.send(:define_column_methods, :cube, :halfvec, :sparsevec, :vector) # prevent unknown OID warning ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.singleton_class.prepend(RegisterTypes) end |