Skip to content

Commit

Permalink
Fix BigQuery system test (#18373)
Browse files Browse the repository at this point in the history
  • Loading branch information
deedmitrij committed Sep 20, 2021
1 parent ef0ff3f commit 18d7e1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
"sourceFormat": "CSV",
"compression": "NONE",
"csvOptions": {"skipLeadingRows": 1},
"sourceUris": [DATA_SAMPLE_GCS_URL],
},
},
bucket=DATA_SAMPLE_GCS_BUCKET_NAME,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,11 @@
"query": {
"query": f"SELECT * FROM {DATASET_NAME}.{TABLE_1}",
"useLegacySql": False,
"destinationTable": f"{DATASET_NAME}.{TABLE_2}",
"destinationTable": {
'projectId': PROJECT_ID,
'datasetId': DATASET_NAME,
'tableId': TABLE_2,
},
}
},
location=location,
Expand Down

0 comments on commit 18d7e1e

Please sign in to comment.