module Sequel::Postgres
Top level module for holding all PostgreSQL-related modules and classes for Sequel
. All adapters that connect to PostgreSQL support the following options:
- :client_min_messages
-
Change the minimum level of messages that PostgreSQL will send to the the client. The PostgreSQL default is NOTICE, the
Sequel
default is WARNING. Set to nil to not change the server default. Overridable on a per instance basis via the :client_min_messages option. - :force_standard_strings
-
Set to false to not force the use of standard strings. Overridable on a per instance basis via the :force_standard_strings option.
- :search_path
-
Set the schema search_path for this Database's connections. Allows to to set which schemas do not need explicit qualification, and in which order to check the schemas when an unqualified object is referenced.
Constants
- CONVERSION_PROCS
- MINUS_INFINITY
- NAN
- PGError
- PGconn
- PGresult
- PLUS_INFINITY
- TYPE_TRANSLATOR
- USES_PG
Public Class Methods
# File lib/sequel/adapters/shared/postgres.rb 84 def self.mock_adapter_setup(db) 85 db.instance_exec do 86 @server_version = 90500 87 initialize_postgres_adapter 88 extend(MockAdapterDatabaseMethods) 89 end 90 end
Whether the given sequel_pg version integer is supported.
# File lib/sequel/adapters/postgres.rb 31 def self.sequel_pg_version_supported?(version) 32 version >= 10617 33 end