aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-06-05 23:35:14 +0930
committerMatthew Draper <matthew@trebex.net>2014-06-05 23:35:14 +0930
commite496a25251dc9c1b455bf9e97baaf58b0e99840b (patch)
tree9000a5c916361a7345b75b558f1f052eb1924b2a /activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
parent1c39310637599df879c0412672f35d3990b61afb (diff)
parentf4bd67b687ba1a2a6f907939ea44717b41a505e1 (diff)
downloadrails-e496a25251dc9c1b455bf9e97baaf58b0e99840b.tar.gz
rails-e496a25251dc9c1b455bf9e97baaf58b0e99840b.tar.bz2
rails-e496a25251dc9c1b455bf9e97baaf58b0e99840b.zip
Merge pull request #15521 from edogawaconan/fix_bc_postgres_master
Fix BC year handling in postgres
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb b/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
index 4c719b834f..3cf40e6cd4 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
@@ -149,8 +149,9 @@ module ActiveRecord
result = "#{result}.#{sprintf("%06d", value.usec)}"
end
- if value.year < 0
- result = result.sub(/^-/, "") + " BC"
+ if value.year <= 0
+ bce_year = format("%04d", -value.year + 1)
+ result = result.sub(/^-?\d+/, bce_year) + " BC"
end
result
end