You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by dh...@apache.org on 2016/11/11 22:50:39 UTC

[1/2] incubator-beam git commit: Closes #1345

Repository: incubator-beam
Updated Branches:
  refs/heads/master 703816dbd -> 821923334


Closes #1345


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/82192333
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/82192333
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/82192333

Branch: refs/heads/master
Commit: 8219233342232f7c607f66f09bcf08cb51611a4c
Parents: 703816d 3d62232
Author: Dan Halperin <dh...@google.com>
Authored: Fri Nov 11 14:50:31 2016 -0800
Committer: Dan Halperin <dh...@google.com>
Committed: Fri Nov 11 14:50:31 2016 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[2/2] incubator-beam git commit: Make BigQueryIO.parseTableSpec public

Posted by dh...@apache.org.
Make BigQueryIO.parseTableSpec public


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/3d622323
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/3d622323
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/3d622323

Branch: refs/heads/master
Commit: 3d62232389d44e669671585bc653581fbf1da62b
Parents: 703816d
Author: Andrew Martin <am...@spotify.com>
Authored: Tue Nov 8 15:09:50 2016 -0500
Committer: Dan Halperin <dh...@google.com>
Committed: Fri Nov 11 14:50:31 2016 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/3d622323/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java
----------------------------------------------------------------------
diff --git a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java
index f30825f..7c9b3e0 100644
--- a/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java
+++ b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java
@@ -290,7 +290,7 @@ public class BigQueryIO {
    *
    * <p>If the project id is omitted, the default project id is used.
    */
-  static TableReference parseTableSpec(String tableSpec) {
+  public static TableReference parseTableSpec(String tableSpec) {
     Matcher match = TABLE_SPEC.matcher(tableSpec);
     if (!match.matches()) {
       throw new IllegalArgumentException(