Hi guys, It's possible to keep the same table name...
# announcements
h
Hi guys, It's possible to keep the same table name in the destination as in the source? for instance if we've a table "abcd" in the source DB, that become "public_abcd" in the destination. • Source: Postgres • Destination: Postgres
1
c
we’re working on it but we have to figure some changes out to handle the schemas properly to do that though
You can follow the issue related to this here https://github.com/airbytehq/airbyte/issues/1921
One of the changes that needs to happen is that source connectors need to publish the schema of the table separate from the table name… Today they publish it as
public.abcd
and then the destination doesn’t know what is schema and what is a table name anymore… (for example a source that has a
<http://public.ab.cd|public.ab.cd>
: • is the schema
public.ab
and table
cd
• or
public
and table
<http://ab.cd|ab.cd>
)
1
h
OK, i see, thanks for all these information.