Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions sdks/python/apache_beam/io/gcp/bigquery_write_it_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,12 @@ def test_big_query_write_temp_table_append_schema_update(self):
args = self.test_pipeline.get_full_options_as_args(
on_success_matcher=BigqueryFullResultMatcher(
project=self.project,
query=
"SELECT bytes, date, time, int64, bool, nested_field.fruit FROM %s"
% table_id,
query="""
SELECT bytes, date, time, int64, bool, fruit
FROM %s,
UNNEST(nested_field) as nested_field
ORDER BY int64
""" % table_id,
data=[(None, None, None, num, True, "Apple")
for num in range(1, 3)]))

Expand Down