Skip to content

Commit

Permalink
Address serialization issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sammcveety committed Dec 6, 2016
1 parent 2d05f10 commit 1ca49af
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,9 @@ public PCollection<TableRow> apply(PBegin input) {
.setTableId(queryTempTableId);

source = BigQueryQuerySource.create(
jobIdToken, query, StaticValueProvider.of(queryTempTableRef),
jobIdToken, query, NestedValueProvider.of(
StaticValueProvider.of(
toJsonString(queryTempTableRef)), new JsonTableRefToTableRef()),
flattenResults, useLegacySql, extractDestinationDir, bqServices);
} else {
ValueProvider<TableReference> inputTable = getTableWithDefaultProject(bqOptions);
Expand Down

0 comments on commit 1ca49af

Please sign in to comment.