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
fix system test
  • Loading branch information
Linchin committed Feb 24, 2024
commit 5f8d7a81a904947c9159ffac0fd3c5c3f667b22b
3 changes: 1 addition & 2 deletions tests/system/test_query.py
Expand Up @@ -27,7 +27,6 @@
from google.cloud.bigquery.query import StructQueryParameter
from google.cloud.bigquery.query import StructQueryParameterType
from google.cloud.bigquery.query import RangeQueryParameter
# from google.cloud.bigquery.query import RangeQueryParameterType


@pytest.fixture(params=["INSERT", "QUERY"])
Expand Down Expand Up @@ -437,7 +436,7 @@ def test_query_statistics(bigquery_client, query_api_method):
),
(
"SELECT @range_datetime",
"[2016-12-05T12:00:00.000000, UNBOUNDED)",
"[2016-12-05T00:00:00, UNBOUNDED)",
[
RangeQueryParameter(
name="range_datetime",
Expand Down