Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support RANGE query parameters #1827

Merged
merged 14 commits into from
Mar 4, 2024
Prev Previous commit
Next Next commit
unit test
  • Loading branch information
Linchin committed Feb 23, 2024
commit adf7150531e03ecaa63fb38731e604aee00ca0d9
2 changes: 1 addition & 1 deletion tests/unit/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,7 @@ def test_to_api_repr_wo_values(self):

def test_to_api_repr_unsupported_value_type(self):
with self.assertRaises(ValueError):
self._make_one(range_element_type="STRING")
self._make_one(range_element_type="LONGSTRING")

def test___eq__(self):
param = self._make_one(range_element_type="DATE", start="2016-08-11", name="foo")
Expand Down