diff --git a/dbt/adapters/bigquery/impl.py b/dbt/adapters/bigquery/impl.py index e9988b430b..acb6fa4a05 100644 --- a/dbt/adapters/bigquery/impl.py +++ b/dbt/adapters/bigquery/impl.py @@ -284,6 +284,9 @@ def list_relations_without_caching( return [self._bq_table_to_relation(table) for table in all_tables] except google.api_core.exceptions.NotFound: return [] + except google.api_core.exceptions.Forbidden as exc: + logger.debug('list_relations_without_caching error: {}'.format(str(exc))) + return [] def get_relation( self, database: str, schema: str, identifier: str