Does Postgres automatically put indexes on Foreign Keys and Primary Keys? How can I tell? Is there a command that will return all indexes on a table?
|
PostgreSQL automatically creates indexes on primary keys and unique constraints, but not on the referencing side of foreign key relationships. When Pg creates an implicit index it will emit a The documentation on unique indexes says:
and the documentation on constraints says:
Therefore you have to create indexes on foreign-keys yourself if you want them. Note that if you use primary-foreign-keys, like 2 FK's as a PK in a M-to-N table, you will have an index on the PK and probably don't need to create any extra indexes. While it's usually a good idea to create an index on (or including) your referencing-side foreign key columns, it isn't required. Each index you add slows DML operations down slightly, so you pay a performance cost on every |
|||||
|
|
Yes - for primary keys, no - for foreign keys (more in the docs).
in "psql" shows a description of a table including all its indexes. |
|||||
|
|
If you want to list the indexes of all the tables in your schema(s) from your program, all the information is on hand in the catalog:
If you want to delve further (such as columns and ordering), you need to look at pg_catalog.pg_index. Using |
|||||
|
|
For a
For a An index on referenc**ing** table is not required (though desired), and therefore will not be implicitly created. |
|||
|
|