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 in queries Part 1: JSON #1884

Merged
merged 6 commits into from
Apr 10, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
lint
  • Loading branch information
Linchin committed Mar 25, 2024
commit a67e1aa3b0329e6636e91b64348bcf95a1453e75
6 changes: 3 additions & 3 deletions tests/system/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def test_query_statistics(bigquery_client, query_api_method):
),
(
"SELECT @range_date",
{'end': None, 'start': datetime.date(2016, 12, 5)},
{"end": None, "start": datetime.date(2016, 12, 5)},
[
RangeQueryParameter(
name="range_date",
Expand All @@ -436,7 +436,7 @@ def test_query_statistics(bigquery_client, query_api_method):
),
(
"SELECT @range_datetime",
{'end': None, 'start': datetime.datetime(2016, 12, 5, 0, 0)},
{"end": None, "start": datetime.datetime(2016, 12, 5, 0, 0)},
[
RangeQueryParameter(
name="range_datetime",
Expand All @@ -447,7 +447,7 @@ def test_query_statistics(bigquery_client, query_api_method):
),
(
"SELECT @range_unbounded",
{'end': None, 'start': None},
{"end": None, "start": None},
[
RangeQueryParameter(
name="range_unbounded",
Expand Down