This is an automated email from the ASF dual-hosted git repository.
damccorm 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 f9479c68190 Support BigQuery tables with spaces (#29649)
f9479c68190 is described below
commit f9479c6819072fda6ab226d438dd799b9402ed2a
Author: Julian Braha <[email protected]>
AuthorDate: Tue Dec 12 08:38:37 2023 -0500
Support BigQuery tables with spaces (#29649)
---
.../src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.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/BigQueryIO.java
b/sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/bigquery/BigQueryIO.java
index 86f7a7f122b..686c29c13e3 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
@@ -577,7 +577,7 @@ public class BigQueryIO {
private static final String DATASET_REGEXP = "[-\\w.]{1,1024}";
/** Regular expression that matches Table IDs. */
- private static final String TABLE_REGEXP = "[-\\w$@]{1,1024}";
+ private static final String TABLE_REGEXP = "[-\\w$@ ]{1,1024}";
/**
* Matches table specifications in the form {@code
"[project_id]:[dataset_id].[table_id]"} or