class PG::Connection
def self.conndefaults_hash
##
## keyword (as a Symbol).
## Return the Postgres connection defaults structure as a Hash keyed by option
def self.conndefaults_hash return self.conndefaults.each_with_object({}) do |info, hash| hash[ info[:keyword].to_sym ] = info[:val] end end