Sha256: df240c55495ebe29aed3d7fce45e0ec612bc3d0154cb092e5cd42422bff678ed
Contents?: true
Size: 1.49 KB
Versions: 9
Compression:
Stored size: 1.49 KB
Contents
# frozen-string-literal: true require 'swift/db/postgres' Sequel.require 'adapters/shared/postgres' module Sequel Postgres::CONVERTED_EXCEPTIONS << ::Swift::Error module Swift # Adapter, Database, and Dataset support for accessing a PostgreSQL # database via Swift. module Postgres # Methods to add to Database instances that access PostgreSQL via Swift. module DatabaseMethods extend Sequel::Database::ResetIdentifierMangling include Sequel::Postgres::DatabaseMethods # Add the primary_keys and primary_key_sequences instance variables, # so we can get the correct return values for inserted rows. def self.extended(db) super db.send(:initialize_postgres_adapter) end private # Remove all other options except for ones specifically handled, as # otherwise swift passes them to dbic++ which passes them to PostgreSQL # which can raise an error. def server_opts(o) o = super so = {} [:db, :user, :password, :host, :port].each{|s| so[s] = o[s] if o.has_key?(s)} so end # Extend the adapter with the Swift PostgreSQL AdapterMethods. def setup_connection(conn) conn = super(conn) conn.native_bind_format = true connection_configuration_sqls.each{|sql| log_connection_yield(sql, conn){conn.execute(sql)}} conn end end end end end
Version data entries
9 entries across 9 versions & 2 rubygems