From bc35631dc7d67ec9c918ec1967c708a5388a76e4 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 13 Jul 2010 10:20:47 -0700 Subject: use constants instead of magic numbers. meow --- .../lib/active_record/connection_adapters/postgresql_adapter.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'activerecord') diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index dd623def2e..4baf99610e 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -433,7 +433,7 @@ module ActiveRecord unescape_col = [] res.nfields.times do |j| # unescape string passed BYTEA field (OID == 17) - unescape_col << ( res.ftype(j)==17 ) + unescape_col << ( res.ftype(j) == BYTEA_COLUMN_TYPE_OID ) end ary = [] @@ -889,6 +889,8 @@ module ActiveRecord private # The internal PostgreSQL identifier of the money data type. MONEY_COLUMN_TYPE_OID = 790 #:nodoc: + # The internal PostgreSQL identifier of the BYTEA data type. + BYTEA_COLUMN_TYPE_OID = 17 #:nodoc: # Connects to a PostgreSQL server and sets up the adapter depending on the # connected server's characteristics. -- cgit v1.2.3