module Sequel::Swift::Postgres::DatabaseMethods

  1. lib/sequel/adapters/swift/postgres.rb
Parent: Postgres

Methods to add to Database instances that access PostgreSQL via Swift.

Methods

Public Class

  1. extended

Public Class methods

extended (db)

Add the primary_keys and primary_key_sequences instance variables, so we can get the correct return values for inserted rows.

[show source]
# File lib/sequel/adapters/swift/postgres.rb, line 18
def self.extended(db)
  super
  db.send(:initialize_postgres_adapter)
end