-
Hi, Beginner here so bare with me please. But, recently installed the latest mac version and quickly ran a dll command to set up some tables. However, querying any table results in "error: relation "members" does not exist" I for an example try the members table. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @elution91, the error occurs because in PostgreSQL you need to specify the schema if is different than public. I will investigate to fix this issue with the next release. SELECT * FROM dannys_dinner.members Thanks for this report. |
Beta Was this translation helpful? Give feedback.
Hi @elution91,
the error occurs because in PostgreSQL you need to specify the schema if is different than public.
However Antares should do the job when a tab has a schema selected, so you found a bug!
I will investigate to fix this issue with the next release.
Until then you could specify schema in queries like follow:
Thanks for this report.