New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support endless ranges in where #34906
Support endless ranges in where #34906
Conversation
@@ -639,6 +639,16 @@ class AttributeTest < Arel::Spec | |||
) | |||
end | |||
|
|||
it "can be constructed with a range implicitly ending at Infinity" do | |||
attribute = Attribute.new nil, nil | |||
node = attribute.between(0..) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will give us a syntax error on 2.5. Can you conditionalize this test so we don't get build failures on 2.5?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. The built actually failed for precisely this reason. I'll push an update tomorrow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tenderlove just pushed an update.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
D'oh, what I did won't work for syntax error 🙈
I can either:
- Come up with something that would work for syntax errors.
- Leave the check as it is and replace
0..
with0..nil
(they're equivalent). In Rubyies pre-2.6 the latter results in anArgumentError
exception.
@tenderlove what do you think?
3a67c12
to
20b108a
Compare
if Gem::Version.new('2.6.0') <= Gem::Version.new(RUBY_VERSION) | ||
it "can be constructed with a range implicitly ending at Infinity" do | ||
attribute = Attribute.new nil, nil | ||
node = attribute.between(0..) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May I suggest this?
node = attribute.between(0..) | |
node = attribute.between(eval("0..")) # Use eval for compatibility with Ruby < 2.6 parser. |
This way Ruby parser in version < 2.6 will just overlook it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great idea. Thanks!
905d11e
to
fbccf87
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you mind checking CodeClimate? Looks like in the test, line 642 and 645 should both use double quote and not single quote.
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.
fbccf87
to
7110dbe
Compare
@tenderlove @sikachu thanks for comments! The build is green now. Please have another look. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is good to merge. @tenderlove, please!
And support endless ranges for `not_between` like as `between`. Follow up #34906.
Support endless ranges in where rails/rails#34906
Summary
This commit adds support for endless ranges, e.g.
(1..)
, that were added in Ruby 2.6. They're functionally equivalent to explicitly specifyingFloat::INFINITY
as the end of the range.Specifically:
is equivalent to
Other Information
Only the end of a range can be omitted. Trying
(..1)
results in a syntax error so there's no need to add support for implicit-Float::INFINITY
.Alternative Implementation
We could modify
other
at the beginning ofbetween
and replacenil
withFloat::INFINITY
(or even support-Float::INFINITY
) so that there'd be no changes to conditions inif
statements below + we would be able to supportnil..1
(equivalent to-Float::INFINITY..1
).Please let me know if you find this preferable and I'll update the PR.