The PostgreSQL adapter works with the native C (github.com/ged/ruby-pg) driver.
Options:
:host - Defaults to a Unix-domain socket in /tmp. On machines without Unix-domain sockets, the default is to connect to localhost.
:port - Defaults to 5432.
:username - Defaults to be the same as the operating system name of the user running the application.
:password - Password to be used if the server demands password authentication.
:database - Defaults to be the same as the username.
:schema_search_path - An optional schema search path for the connection given as a string of comma-separated schema names. This is backward-compatible with the :schema_order option.
:encoding - An optional client encoding that is used in a SET client_encoding TO <encoding> call on the connection.
:min_messages - An optional client min messages that is used in a SET client_min_messages TO <min_messages> call on the connection.
:variables - An optional hash of additional parameters that will be used in SET SESSION key = val calls on the connection.
:insert_returning - An optional boolean to control the use of RETURNING for INSERT statements defaults to true.
Any further options are used as connection parameters to libpq. See www.postgresql.org/docs/current/static/libpq-connect.html for the list of parameters.
In addition, default connection parameters of libpq can be set per environment variables. See www.postgresql.org/docs/current/static/libpq-envars.html .
See www.postgresql.org/docs/current/static/errcodes-appendix.html
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 103 class_attribute :create_unlogged_tables, default: false
PostgreSQL allows the creation of “unlogged” tables, which do not record data in the PostgreSQL Write-Ahead Log. This can make the tables faster, but significantly increases the risk of data loss if the database crashes. As a result, this should not be used in production environments. If you would like all created tables to be unlogged in the test environment you can add the following line to your test.rb file:
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.create_unlogged_tables = true
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 300 def self.database_exists?(config) !!ActiveRecord::Base.postgresql_connection(config) rescue ActiveRecord::NoDatabaseError false end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 121 class_attribute :datetime_type, default: :timestamp
PostgreSQL supports multiple types for DateTimes. By default if you use `datetime` in migrations, Rails will translate this to a PostgreSQL “timestamp without time zone”. Change this in an initializer to use another NATIVE_DATABASE_TYPES. For example, to store DateTimes as “timestamp with time zone”:
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type = :timestamptz
Or if you are adding a custom type:
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::NATIVE_DATABASE_TYPES[:my_custom_type] = { name: "my_custom_type_name" }
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.datetime_type = :my_custom_type
If you're using :ruby as your config.active_record.schema_format and you change this setting, you should immediately run bin/rails db:migrate to update the types in your schema.rb.
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 281
def initialize(connection, logger, connection_parameters, config)
super(connection, logger, config)
@connection_parameters = connection_parameters
# @local_tz is initialized as nil to avoid warnings when connect tries to use it
@local_tz = nil
@max_identifier_length = nil
configure_connection
add_pg_encoders
add_pg_decoders
@type_map = Type::HashLookupTypeMap.new
initialize_type_map
@local_tz = execute("SHOW TIME ZONE", "SCHEMA").first["TimeZone"]
@use_insert_returning = @config.key?(:insert_returning) ? self.class.type_cast_config_to_boolean(@config[:insert_returning]) : true
end Initializes and connects a PostgreSQL adapter.
ActiveRecord::ConnectionAdapters::QueryCache::new # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 77
def new_client(conn_params)
PG.connect(conn_params)
rescue ::PG::Error => error
if conn_params && conn_params[:dbname] && error.message.include?(conn_params[:dbname])
raise ActiveRecord::NoDatabaseError.db_error(conn_params[:dbname])
elsif conn_params && conn_params[:user] && error.message.include?(conn_params[:user])
raise ActiveRecord::DatabaseConnectionError.username_error(conn_params[:user])
elsif conn_params && conn_params[:hostname] && error.message.include?(conn_params[:hostname])
raise ActiveRecord::DatabaseConnectionError.hostname_error(conn_params[:hostname])
else
raise ActiveRecord::ConnectionNotEstablished, error.message
end
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 307
def active?
@lock.synchronize do
@connection.query ";"
end
true
rescue PG::Error
false
end Is this connection alive and ready for queries?
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 472
def create_enum(name, values)
sql_values = values.map { |s| "'#{s}'" }.join(", ")
query = <<~SQL
DO $$
BEGIN
IF NOT EXISTS (
SELECT 1 FROM pg_type t
WHERE t.typname = '#{name}'
) THEN
CREATE TYPE \"#{name}\" AS ENUM (#{sql_values});
END IF;
END
$$;
SQL
exec_query(query)
end Given a name and an array of values, creates an enum type.
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 439
def disable_extension(name)
exec_query("DROP EXTENSION IF EXISTS \"#{name}\" CASCADE").tap {
reload_type_map
}
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 347
def disconnect!
@lock.synchronize do
super
@connection.close rescue nil
end
end Disconnects from the database if already connected. Otherwise, this method does nothing.
ActiveRecord::ConnectionAdapters::AbstractAdapter#disconnect! # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 433
def enable_extension(name)
exec_query("CREATE EXTENSION IF NOT EXISTS \"#{name}\"").tap {
reload_type_map
}
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 458
def enum_types
query = <<~SQL
SELECT
type.typname AS name,
string_agg(enum.enumlabel, ',' ORDER BY enum.enumsortorder) AS value
FROM pg_enum AS enum
JOIN pg_type AS type
ON (type.oid = enum.enumtypid)
GROUP BY type.typname;
SQL
exec_query(query, "SCHEMA").cast_values
end Returns a list of defined enum types, and their values.
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 445
def extension_available?(name)
query_value("SELECT true FROM pg_available_extensions WHERE name = #{quote(name)}", "SCHEMA")
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 449
def extension_enabled?(name)
query_value("SELECT installed_version IS NOT NULL FROM pg_available_extensions WHERE name = #{quote(name)}", "SCHEMA")
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 453
def extensions
exec_query("SELECT extname FROM pg_extension", "SCHEMA").cast_values
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 252
def index_algorithms
{ concurrently: "CONCURRENTLY" }
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 490
def max_identifier_length
@max_identifier_length ||= query_value("SHOW max_identifier_length", "SCHEMA").to_i
end Returns the configured supported identifier length supported by PostgreSQL
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 322
def reconnect!
@lock.synchronize do
super
@connection.reset
configure_connection
reload_type_map
rescue PG::ConnectionBad
connect
end
end Close then reopen the connection.
ActiveRecord::ConnectionAdapters::AbstractAdapter#reconnect! # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 333
def reset!
@lock.synchronize do
clear_cache!
reset_transaction
unless @connection.transaction_status == ::PG::PQTRANS_IDLE
@connection.query "ROLLBACK"
end
@connection.query "DISCARD ALL"
configure_connection
end
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 495
def session_auth=(user)
clear_cache!
execute("SET SESSION AUTHORIZATION #{user}")
end Set the authorized user for this session
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 372
def set_standard_conforming_strings
execute("SET standard_conforming_strings = on", "SCHEMA")
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 380 def supports_advisory_locks? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 177 def supports_bulk_alter? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 205 def supports_check_constraints? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 229 def supports_comments? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 411 def supports_common_table_expressions? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 221 def supports_datetime_with_precision? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 376 def supports_ddl_transactions? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 213 def supports_deferrable_constraints? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 384 def supports_explain? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 193 def supports_expression_index? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 388 def supports_extensions? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 201 def supports_foreign_keys? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 396 def supports_foreign_tables? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 181 def supports_index_sort_order? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 241 def supports_insert_on_conflict? database_version >= 90500 # >= 9.5 end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 237 def supports_insert_returning? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 225 def supports_json? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 415 def supports_lazy_transactions? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 392 def supports_materialized_views? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 404
def supports_optimizer_hints?
unless defined?(@has_pg_hint_plan)
@has_pg_hint_plan = extension_available?("pg_hint_plan")
end
@has_pg_hint_plan
end # File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 189 def supports_partial_index? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 185 def supports_partitioned_indexes? database_version >= 110_000 # >= 11.0 end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 400 def supports_pgcrypto_uuid? database_version >= 90400 # >= 9.4 end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 233 def supports_savepoints? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 197 def supports_transaction_isolation? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 209 def supports_validate_constraints? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 217 def supports_views? true end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 248 def supports_virtual_columns? database_version >= 120_000 # >= 12.0 end
# File activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb, line 500 def use_insert_returning? @use_insert_returning end
© 2004–2021 David Heinemeier Hansson
Licensed under the MIT License.