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 18 18: def self.extended(db) 19: super 20: db.send(:initialize_postgres_adapter) 21: end
[Validate]