Methods to add to Database instances that access PostgreSQL via Swift.
Add the primary_keys and primary_key_sequences instance variables, so we can get the correct return values for inserted rows.
[Source]
# File lib/sequel/adapters/swift/postgres.rb, line 20 20: def self.extended(db) 21: super 22: db.send(:initialize_postgres_adapter) 23: end
[Validate]