Skip to content
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.

Commit

Permalink
fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalperi committed Feb 6, 2017
1 parent 502f99f commit 5625ffb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1158,6 +1158,7 @@ private void executeQuery(
.setAllowLargeResults(true)
.setCreateDisposition("CREATE_IF_NEEDED")
.setDestinationTable(destinationTable)
.setPriority("BATCH")
.setWriteDisposition("WRITE_EMPTY");

jobService.startQueryJob(jobRef, queryConfig);
Expand All @@ -1172,7 +1173,6 @@ private JobConfigurationQuery createBasicQueryConfig() {
// then the similar code in BigQueryTableRowIterator#fromQuery should be updated.
return new JobConfigurationQuery()
.setFlattenResults(flattenResults)
.setPriority("BATCH")
.setQuery(query.get())
.setUseLegacySql(useLegacySql);
}
Expand Down

0 comments on commit 5625ffb

Please sign in to comment.