diff options
author | Greg Navis <contact@gregnavis.com> | 2019-01-09 18:17:40 +0100 |
---|---|---|
committer | Greg Navis <contact@gregnavis.com> | 2019-01-11 14:27:34 +0100 |
commit | 7110dbea008dd4b80d1764003935a3c97ab10f57 (patch) | |
tree | 5bffd50bc1a8126167fcfd650bcc84e88789442f /activerecord/lib/arel | |
parent | ea65d92f1924648e72f93bb0e8e5fc62a56d0bac (diff) | |
download | rails-7110dbea008dd4b80d1764003935a3c97ab10f57.tar.gz rails-7110dbea008dd4b80d1764003935a3c97ab10f57.tar.bz2 rails-7110dbea008dd4b80d1764003935a3c97ab10f57.zip |
Support endless ranges in where
This commit adds support for endless ranges, e.g. (1..), that were added
in Ruby 2.6. They're functionally equivalent to explicitly specifying
Float::INFINITY as the end of the range.
Diffstat (limited to 'activerecord/lib/arel')
-rw-r--r-- | activerecord/lib/arel/predications.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/arel/predications.rb b/activerecord/lib/arel/predications.rb index 28679ae892..0c03e93138 100644 --- a/activerecord/lib/arel/predications.rb +++ b/activerecord/lib/arel/predications.rb @@ -36,14 +36,14 @@ module Arel # :nodoc: all def between(other) if infinity?(other.begin) - if infinity?(other.end) + if other.end.nil? || infinity?(other.end) not_in([]) elsif other.exclude_end? lt(other.end) else lteq(other.end) end - elsif infinity?(other.end) + elsif other.end.nil? || infinity?(other.end) gteq(other.begin) elsif other.exclude_end? gteq(other.begin).and(lt(other.end)) |