Postgres information_schema.tables usage problem #474
Unanswered
kosenkoNick
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey!
I have my a project, where I am retrieving a list of tables from information_schema.tables
I have this query:
select table_name from information_schema.tables where table_type = 'BASE TABLE' and table_name in (<some tables are here>) order by table_name
When I run it, I am getting this:

I don't get the error while using another table, NOT from information_schema
Is there any workaround for this? Or maybe I am doing smth wrong?
Beta Was this translation helpful? Give feedback.
All reactions