Module | Sequel::Swift::Postgres::DatabaseMethods |
In: |
lib/sequel/adapters/swift/postgres.rb
|
Add the primary_keys and primary_key_sequences instance variables, so we can get the correct return values for inserted rows.
# File lib/sequel/adapters/swift/postgres.rb, line 16 16: def self.extended(db) 17: db.instance_eval do 18: @primary_keys = {} 19: @primary_key_sequences = {} 20: end 21: end