Methods to add to Database instances that access PostgreSQL via DataObjects.
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/do/postgres.rb, line 17 17: def self.extended(db) 18: db.instance_eval do 19: @primary_keys = {} 20: @primary_key_sequences = {} 21: end 22: end
[Validate]