Skip to content

Commit a4bcaa3

Browse files
Praful Makanisduskis
authored andcommitted
---
yaml --- r: 29273 b: refs/heads/autosynth-container c: 264643d h: refs/heads/master i: 29271: 0fbb2cf
1 parent 8269010 commit a4bcaa3

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ refs/tags/v0.65.0: 10939381ffe0b8da32db4fe3087c86e3aa7f3e55
112112
refs/tags/v0.66.0: ed6a3f57cbdaa20339a1995f7d7d53b172a5b8ef
113113
refs/tags/v0.67.0: 30b56f02092efc6f3c3667650ea8b8825003e0b7
114114
refs/heads/autosynth-compute: c0ad4e5b54b2b167d47e508ca215c039404837d3
115-
refs/heads/autosynth-container: 3ec7a6f3bae9be9b51e69e605982adbbec66b119
115+
refs/heads/autosynth-container: 264643df7bcc715efbd648c3ab40389ae2253d19
116116
refs/heads/autosynth-monitoring: e66569bd7358a90d17097f90cf8c70dbeeb048cf
117117
refs/heads/autosynth-pubsub: 8aac5a6202d83e8d67f5cb1d58f0adf9f2622aeb
118118
refs/heads/autosynth-video-intelligence: 82b145665822830c46d47eb8925edb2d842d6815

branches/autosynth-container/google-cloud-clients/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQueryImpl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -655,9 +655,9 @@ private static Tuple<? extends Page<FieldValueList>, Long> listTableData(
655655
try {
656656
final TableId completeTableId =
657657
tableId.setProjectId(
658-
Strings.isNullOrEmpty(serviceOptions.getProjectId())
659-
? tableId.getProject()
660-
: serviceOptions.getProjectId());
658+
Strings.isNullOrEmpty(tableId.getProject())
659+
? serviceOptions.getProjectId()
660+
: tableId.getProject());
661661
TableDataList result =
662662
runWithRetries(
663663
new Callable<TableDataList>() {

branches/autosynth-container/google-cloud-clients/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/BigQueryImplTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1246,8 +1246,7 @@ public void testListTableDataFromTableIdWithProject() {
12461246
EasyMock.expect(bigqueryRpcMock.listTableData(OTHER_PROJECT, DATASET, TABLE, EMPTY_RPC_OPTIONS))
12471247
.andReturn(TABLE_DATA_PB);
12481248
EasyMock.replay(bigqueryRpcMock);
1249-
BigQueryOptions bigQueryOptions =
1250-
createBigQueryOptionsForProject(OTHER_PROJECT, rpcFactoryMock);
1249+
BigQueryOptions bigQueryOptions = createBigQueryOptionsForProject(PROJECT, rpcFactoryMock);
12511250
bigquery = bigQueryOptions.getService();
12521251
Page<FieldValueList> page = bigquery.listTableData(tableId);
12531252
assertEquals(CURSOR, page.getNextPageToken());

0 commit comments

Comments
 (0)