Skip to content

Commit

Permalink
Fix minor spacing issue in the postgres adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Nov 10, 2010
1 parent 8bc9402 commit bbc6a9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sequel/adapters/postgres.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ module Postgres

# Use a single proc for each type to conserve memory
PG_TYPE_PROCS = {
[16] => lambda{|s| s == 't'}, # boolean
[16] => lambda{|s| s == 't'}, # boolean
[17] => lambda{|s| ::Sequel::SQL::Blob.new(Adapter.unescape_bytea(s))}, # bytea
[20, 21, 22, 23, 26] => lambda{|s| s.to_i}, # integer
[700, 701] => lambda{|s| s.to_f}, # float
Expand Down

0 comments on commit bbc6a9d

Please sign in to comment.