This is an automated email from the ASF dual-hosted git repository.
pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 31e2750 [BEAM-8809] Make the constructor for AvroWriteRequest public
new 3906c42 Merge pull request #10199 from tc-dc/bq-avro-fix
31e2750 is described below
commit 31e2750cda0e6de07e41569906fa92a1a08cbd25
Author: steve <[email protected]>
AuthorDate: Fri Nov 22 13:49:15 2019 -0500
[BEAM-8809] Make the constructor for AvroWriteRequest public
---
.../main/java/org/apache/beam/sdk/io/gcp/bigquery/AvroWriteRequest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/AvroWriteRequest.java
b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/AvroWriteRequest.java
index bea79c6..24f7890 100644
---
a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/AvroWriteRequest.java
+++
b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/AvroWriteRequest.java
@@ -23,7 +23,7 @@ public class AvroWriteRequest<T> {
private final T element;
private final Schema schema;
- AvroWriteRequest(T element, Schema schema) {
+ public AvroWriteRequest(T element, Schema schema) {
this.element = element;
this.schema = schema;
}