Not having "Incremental" option for Postgres table has primary key #41966
-
We have a table in Postgres: create table if not exists public._airbyte_heartbeat (
id serial primary key,
timestamp timestamptz not null default now()
);
grant insert, update on table public._airbyte_heartbeat to airbyte_user; I expect it has all four options because it has primary key:
But it only has two options: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
@hongbo-miao - for CDC can you confirm you have followed the set up guide correctly:
Full guide is here |
Beta Was this translation helpful? Give feedback.
-
@hongbo-miao - one final thing I forgot to mention initially is that if you had made the changes I suggested, a schema discovery would be required to see the new options appear. It's likely a schema discovery was triggered overnight and now this is visible. |
Beta Was this translation helpful? Give feedback.
@hongbo-miao - for CDC can you confirm you have followed the set up guide correctly:
Replica Identity
set toDefault
orFull
Full guide is here