# File lib/sequel/adapters/shared/postgres.rb 86 def primary_key(table) 87 :id 88 end
module Sequel::Postgres::MockAdapterDatabaseMethods
Public Instance Methods
Source
# File lib/sequel/adapters/shared/postgres.rb 82 def bound_variable_arg(arg, conn) 83 arg 84 end
Source
Private Instance Methods
Source
# File lib/sequel/adapters/shared/postgres.rb 95 def schema_parse_table(table, opts=OPTS) 96 super 97 rescue NoMethodError 98 [] 99 end
Handle NoMethodErrors when parsing schema due to output_identifier being called with nil when the Database
fetch results are not set to what schema parsing expects.
Calls superclass method