public BigQueryReference()

in zetasql-toolkit-bigquery/src/main/java/com/google/zetasql/toolkit/catalog/bigquery/BigQueryReference.java [39:48]


  public BigQueryReference(String projectId, String datasetId, String resourceName) {
    this.projectId = projectId;
    this.datasetId = datasetId;
    this.resourceName = resourceName;
    if (!PROJECT_PATTERN.matcher(projectId).matches()
        || !DATASET_PATTERN.matcher(datasetId).matches()
        || !RESOURCE_PATTERN.matcher(resourceName).matches()) {
      throw new InvalidBigQueryReference(this.getFullName());
    }
  }