citusdata / citus_docs

Documentation for Citus. Distributed PostgreSQL as an extension.
Creative Commons Attribution 4.0 International
58 stars 59 forks source link

Possible mistake in mentioning the table name as citus.pg_dist_object. #1062

Open emelsimsek opened 1 year ago

emelsimsek commented 1 year ago

pg_dist_object table is referred to as citus.pg_dist_object at https://docs.citusdata.com/en/latest/develop/api_metadata.html#distributed-object-table section as opposed to other tables which are written without the citus prefix throughout the document.

Also, if someone follows the https://docs.citusdata.com/en/latest/use_cases/multi_tenant.html instructions and wants to see meta tables at some point, citus.pg_dist_object table cannot be found.

SELECT * FROM citus.pg_dist_object;

ERROR: relation "citus.pg_dist_object" does not exist LINE 1: SELECT * FROM citus.pg_dist_object;