Skip to content

Commit

Permalink
use constants instead of magic numbers. meow
Browse files Browse the repository at this point in the history
  • Loading branch information
tenderlove committed Jul 13, 2010
1 parent 2b22d12 commit bc35631
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -433,7 +433,7 @@ def result_as_array(res) #:nodoc:
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 = []
Expand Down Expand Up @@ -889,6 +889,8 @@ def translate_exception(exception, message)
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.
Expand Down

0 comments on commit bc35631

Please sign in to comment.