From 8432415d592ef0c88112ec685d12dadf48592470 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Sun, 4 May 2008 23:34:25 +0200 Subject: revised some conventions in postgresql_adapter.rb --- .../connection_adapters/postgresql_adapter.rb | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index e3f7969cdf..2ec2d80af4 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -228,15 +228,15 @@ module ActiveRecord # # Options: # - # * :host -- Defaults to localhost - # * :port -- Defaults to 5432 - # * :username -- Defaults to nothing - # * :password -- Defaults to nothing - # * :database -- The name of the database. No default, must be provided. - # * :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 call on the connection. - # * :min_messages -- An optional client min messages that is used in a SET client_min_messages TO call on the connection. - # * :allow_concurrency -- If true, use async query methods so Ruby threads don't deadlock; otherwise, use blocking query methods. + # * :host - Defaults to "localhost". + # * :port - Defaults to 5432. + # * :username - Defaults to nothing. + # * :password - Defaults to nothing. + # * :database - The name of the database. No default, must be provided. + # * :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 call on the connection. + # * :min_messages - An optional client min messages that is used in a SET client_min_messages TO call on the connection. + # * :allow_concurrency - If true, use async query methods so Ruby threads don't deadlock; otherwise, use blocking query methods. class PostgreSQLAdapter < AbstractAdapter # Returns 'PostgreSQL' as adapter name for identification purposes. def adapter_name -- cgit v1.2.3