Skip to content

Commit 2881c97

Browse files
committed
---
yaml --- r: 6889 b: refs/heads/tswast-patch-1 c: 7761a9e h: refs/heads/master i: 6887: 5a36790
1 parent 4fd4a23 commit 2881c97

10 files changed

Lines changed: 21 additions & 11 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: f7990c014eb4d96223cc5fc03177a8e8d9b12bc4
60+
refs/heads/tswast-patch-1: 7761a9ecd553e0104eca8053f17ab168ddfe47b7
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-bigquery/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-bigquery</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java bigquery</name>

branches/tswast-patch-1/gcloud-java-bigquery/src/main/java/com/google/gcloud/bigquery/Table.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ public boolean delete() {
182182
* @param rows rows to be inserted
183183
* @throws BigQueryException upon failure
184184
*/
185-
InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows) throws BigQueryException {
185+
public InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows)
186+
throws BigQueryException {
186187
return bigquery.insertAll(InsertAllRequest.of(tableId(), rows));
187188
}
188189

@@ -197,8 +198,8 @@ InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows) throws Big
197198
* to be invalid
198199
* @throws BigQueryException upon failure
199200
*/
200-
InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows, boolean skipInvalidRows,
201-
boolean ignoreUnknownValues) throws BigQueryException {
201+
public InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows,
202+
boolean skipInvalidRows, boolean ignoreUnknownValues) throws BigQueryException {
202203
InsertAllRequest request = InsertAllRequest.builder(tableId(), rows)
203204
.skipInvalidRows(skipInvalidRows)
204205
.ignoreUnknownValues(ignoreUnknownValues)
@@ -212,7 +213,7 @@ InsertAllResponse insert(Iterable<InsertAllRequest.RowToInsert> rows, boolean sk
212213
* @param options table data list options
213214
* @throws BigQueryException upon failure
214215
*/
215-
Page<List<FieldValue>> list(BigQuery.TableDataListOption... options) throws BigQueryException {
216+
public Page<List<FieldValue>> list(BigQuery.TableDataListOption... options) throws BigQueryException {
216217
return bigquery.listTableData(tableId(), options);
217218
}
218219

@@ -225,7 +226,7 @@ Page<List<FieldValue>> list(BigQuery.TableDataListOption... options) throws BigQ
225226
* @param options job options
226227
* @throws BigQueryException upon failure
227228
*/
228-
Job copy(String destinationDataset, String destinationTable, BigQuery.JobOption... options)
229+
public Job copy(String destinationDataset, String destinationTable, BigQuery.JobOption... options)
229230
throws BigQueryException {
230231
return copy(TableId.of(destinationDataset, destinationTable), options);
231232
}
@@ -238,7 +239,8 @@ Job copy(String destinationDataset, String destinationTable, BigQuery.JobOption.
238239
* @param options job options
239240
* @throws BigQueryException upon failure
240241
*/
241-
Job copy(TableId destinationTable, BigQuery.JobOption... options) throws BigQueryException {
242+
public Job copy(TableId destinationTable, BigQuery.JobOption... options)
243+
throws BigQueryException {
242244
CopyJobConfiguration configuration = CopyJobConfiguration.of(destinationTable, tableId());
243245
return bigquery.create(JobInfo.of(configuration), options);
244246
}
@@ -253,7 +255,7 @@ Job copy(TableId destinationTable, BigQuery.JobOption... options) throws BigQuer
253255
* @param options job options
254256
* @throws BigQueryException upon failure
255257
*/
256-
Job extract(String format, String destinationUri, BigQuery.JobOption... options)
258+
public Job extract(String format, String destinationUri, BigQuery.JobOption... options)
257259
throws BigQueryException {
258260
return extract(format, ImmutableList.of(destinationUri), options);
259261
}
@@ -268,7 +270,7 @@ Job extract(String format, String destinationUri, BigQuery.JobOption... options)
268270
* @param options job options
269271
* @throws BigQueryException upon failure
270272
*/
271-
Job extract(String format, List<String> destinationUris, BigQuery.JobOption... options)
273+
public Job extract(String format, List<String> destinationUris, BigQuery.JobOption... options)
272274
throws BigQueryException {
273275
ExtractJobConfiguration extractConfiguration =
274276
ExtractJobConfiguration.of(tableId(), destinationUris, format);
@@ -285,7 +287,7 @@ Job extract(String format, List<String> destinationUris, BigQuery.JobOption... o
285287
* @param options job options
286288
* @throws BigQueryException upon failure
287289
*/
288-
Job load(FormatOptions format, String sourceUri, BigQuery.JobOption... options)
290+
public Job load(FormatOptions format, String sourceUri, BigQuery.JobOption... options)
289291
throws BigQueryException {
290292
return load(format, ImmutableList.of(sourceUri), options);
291293
}
@@ -300,7 +302,7 @@ Job load(FormatOptions format, String sourceUri, BigQuery.JobOption... options)
300302
* @param options job options
301303
* @throws BigQueryException upon failure
302304
*/
303-
Job load(FormatOptions format, List<String> sourceUris, BigQuery.JobOption... options)
305+
public Job load(FormatOptions format, List<String> sourceUris, BigQuery.JobOption... options)
304306
throws BigQueryException {
305307
LoadJobConfiguration loadConfig = LoadJobConfiguration.of(tableId(), sourceUris, format);
306308
return bigquery.create(JobInfo.of(loadConfig), options);

branches/tswast-patch-1/gcloud-java-contrib/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-contrib</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java contributions</name>

branches/tswast-patch-1/gcloud-java-core/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-core</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java core</name>

branches/tswast-patch-1/gcloud-java-datastore/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-datastore</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java datastore</name>

branches/tswast-patch-1/gcloud-java-examples/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-examples</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java examples</name>

branches/tswast-patch-1/gcloud-java-resourcemanager/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-resourcemanager</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java resource manager</name>

branches/tswast-patch-1/gcloud-java-storage/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java-storage</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java storage</name>

branches/tswast-patch-1/gcloud-java/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.google.gcloud</groupId>
45
<artifactId>gcloud-java</artifactId>
56
<packaging>jar</packaging>
67
<name>GCloud Java</name>

0 commit comments

Comments
 (0)