In the rare situation that seems to have happened to a customer recently - that BigQuery tells us a incremental table does not exist even though it does - we should not generate a create or replace statement to rebuild the table in case it does actually exist, and instead generate a create table if not exists statement in case.
In the rare situation that seems to have happened to a customer recently - that BigQuery tells us a incremental table does not exist even though it does - we should not generate a
create or replace
statement to rebuild the table in case it does actually exist, and instead generate acreate table if not exists
statement in case.