Skip to content

Commit 1268c45

Browse files
committed
remove query system test
1 parent 0567adf commit 1268c45

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tests/system/test_client.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1945,16 +1945,6 @@ def test_dml_statistics(self):
19451945
assert query_job.dml_stats.updated_row_count == 0
19461946
assert query_job.dml_stats.deleted_row_count == 3
19471947

1948-
def test_query_w_picosecond_timestamp(self):
1949-
query_job = Config.CLIENT.query(
1950-
"SELECT CAST(\"2025-10-20\" AS TIMESTAMP(12)) as time_pico;",
1951-
)
1952-
expected_schema = [
1953-
bigquery.SchemaField("time_pico", "TIMESTAMP", mode="NULLABLE", timestamp_precision=12),
1954-
]
1955-
iterator = query_job.result()
1956-
self.assertEqual(iterator.schema, expected_schema)
1957-
19581948
def test_transaction_info(self):
19591949
table_schema = (
19601950
bigquery.SchemaField("foo", "STRING"),

0 commit comments

Comments
 (0)