Closed
Description
Bug report
Describe the bug
To Reproduce
- Create a publication
- create a table "public.users"
- create a table "auth.user"
- Add both tables to the publication
- select the publication
The result will return an array of tables ["users", "users"]
Expected behavior
Some way to distinguish which schema the table belong to. Perhaps:
[
{ id: X, name: "users", schema: "public" },
{ id: Y, name: "users", schema: "auth" },
]