I have a Postgres DB that I want to query from my Redshift cluster. I've successfully created the schema with CREATE EXTERNAL SCHEMA
.
But the schema itself is empty. I don't see any tables in the schema drop-down in the query editor, and when I attempt to query a table I know exists, I get the error message:
error: Table may not exist or is unsupported relation type code: 25000 context: query: 0 location: pgclient.cpp:189 process: padbmaster [pid=19735]
I suspect this is because the tables are foreign tables (replicating from a vendor's database). Is there a way (either a config change in Postgres or something different in Redshift) to get Redshift to recognize these tables and let me query them?