Skip to content

Commit 958935e

Browse files
authored
Remove system test for split rows (googleapis#7673)
The semantics of split are changing. See internal CL 242136870.
1 parent a3b9b75 commit 958935e

1 file changed

Lines changed: 0 additions & 12 deletions

File tree

bigquery_storage/tests/system/test_system.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,3 @@ def test_read_rows_to_dataframe(client, project_id):
8989
assert frame.latitude.dtype.name == "float16"
9090
assert frame.longitude.dtype.name == "float64"
9191
assert frame["name"].str.startswith("Central Park").any()
92-
93-
94-
def test_split_read_stream(client, project_id, table_reference):
95-
session = client.create_read_session(
96-
table_reference, parent="projects/{}".format(project_id)
97-
)
98-
99-
split = client.split_read_stream(session.streams[0])
100-
101-
assert split.primary_stream is not None
102-
assert split.remainder_stream is not None
103-
assert split.primary_stream != split.remainder_stream

0 commit comments

Comments
 (0)