Skip to content

Commit

Permalink
docs(samples): fix typo (#884)
Browse files Browse the repository at this point in the history
* docs(samples): fix typo

* nit
  • Loading branch information
stephaniewang526 committed Oct 28, 2020
1 parent 9f48a91 commit 97573b5
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -43,7 +43,8 @@ public static void main(String[] args) throws InterruptedException {
// Export result of query to find states starting with 'W'
String query =
String.format(
"EXPORT DATA WITH CONNECTION %s AS SELECT * FROM %s.%s.%s WHERE name LIKE 'W%%'",
"EXPORT DATA WITH CONNECTION `%s` OPTIONS(uri='%s', format='%s') "
+ "AS SELECT * FROM %s.%s.%s WHERE name LIKE 'W%%'",
connectionName, destinationUri, format, projectId, datasetName, externalTableName);
exportQueryResultsToS3(query);
}
Expand Down

0 comments on commit 97573b5

Please sign in to comment.