chore: Bump bigquery libs (#21466)

This commit is contained in:
EugeneTorap
2022-12-02 13:48:36 +03:00
committed by GitHub
parent 93cdcf1d92
commit 7bc5f04368
9 changed files with 37 additions and 37 deletions

View File

@@ -356,7 +356,7 @@ class TestBigQueryDbEngineSpec(TestDbEngineSpec):
]
@mock.patch("superset.models.core.Database.db_engine_spec", BigQueryEngineSpec)
@mock.patch("pybigquery._helpers.create_bigquery_client", mock.Mock)
@mock.patch("sqlalchemy_bigquery._helpers.create_bigquery_client", mock.Mock)
@pytest.mark.usefixtures("load_birth_names_dashboard_with_slices")
def test_calculated_column_in_order_by(self):
table = self.get_table(name="birth_names")

View File

@@ -19,10 +19,10 @@
import json
from pybigquery.sqlalchemy_bigquery import BigQueryDialect
from pytest_mock import MockFixture
from sqlalchemy import select
from sqlalchemy.sql import sqltypes
from sqlalchemy_bigquery import BigQueryDialect
def test_get_fields() -> None: