Hi, I have a general question. Will dropping a tab...
# getting-started
c
Hi, I have a general question. Will dropping a table in the target database trigger a full-refresh in an incremental pipeline?
t
It will not, unfortunately
The target will recreate the table but the tap knows nothing about the state of the data in the destination.
What you can do is modify meltano's state data to remove the stored state for the table, so then the tap will re-retrieve all the data.
c
ah nice to know, thank you.