diff options
author | Alexey <leopard.not.a@gmail.com> | 2012-12-17 21:16:40 +0200 |
---|---|---|
committer | Alexey <leopard.not.a@gmail.com> | 2012-12-17 21:33:30 +0200 |
commit | 49182b87b258786ae5942eeb475618794291e976 (patch) | |
tree | 9521bb3de164cd1f9b2a3ba6a7e386d7f0b20d88 /activerecord/lib | |
parent | 9a4a095ed7ea6f0f65cc9e3bf3258cbdd0ddc210 (diff) | |
download | rails-49182b87b258786ae5942eeb475618794291e976.tar.gz rails-49182b87b258786ae5942eeb475618794291e976.tar.bz2 rails-49182b87b258786ae5942eeb475618794291e976.zip |
AR supporting new int4range and int8range data type on PostgreSQL >= 9.2. Fix realization
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/postgresql/cast.rb | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb b/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb index 3772f7ddaa..f7d734a2f1 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql/cast.rb @@ -97,8 +97,7 @@ module ActiveRecord nil elsif "empty" == string (nil..nil) - elsif String === string - matches = /^(\(|\[)([0-9]+),(\s?)([0-9]+)(\)|\])$/i.match(string) + elsif String === string && (matches = /^(\(|\[)([0-9]+),(\s?)([0-9]+)(\)|\])$/i.match(string)) lower_bound = ("(" == matches[1] ? (matches[2].to_i + 1) : matches[2].to_i) upper_bound = (")" == matches[5] ? (matches[4].to_i - 1) : matches[4].to_i) (lower_bound..upper_bound) @@ -108,8 +107,16 @@ module ActiveRecord end def intrange_to_string(object) - if Range === object - "[#{object.first},#{object.exclude_end? ? object.last : object.last.to_i + 1})" + if object.nil? + nil + elsif Range === object + if [object.first, object.last].all? { |el| Integer === el } + "[#{object.first.to_i},#{object.exclude_end? ? object.last.to_i : object.last.to_i + 1})" + elsif [object.first, object.last].all? { |el| NilClass === el } + "empty" + else + nil + end else object end |