Skip to content

Commit

Permalink
make source-bigquery compile (#5877)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopheDuong authored Sep 8, 2021
1 parent 74d6c07 commit 5ff0d23
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,12 @@ public Set<String> getExcludedInternalNameSpaces() {
}

@Override
protected List<TableInfo<CommonField<StandardSQLTypeName>>> discoverInternal(BigQueryDatabase database) {
protected List<TableInfo<CommonField<StandardSQLTypeName>>> discoverInternal(BigQueryDatabase database) throws Exception {
return discoverInternal(database, null);
}

@Override
protected List<TableInfo<CommonField<StandardSQLTypeName>>> discoverInternal(BigQueryDatabase database, String schema) {
String projectId = dbConfig.get(CONFIG_PROJECT_ID).asText();
String datasetId = getConfigDatasetId(database);
List<Table> tables =
Expand Down

0 comments on commit 5ff0d23

Please sign in to comment.