it:postgresql:foreign_keys
Различия
Показаны различия между двумя версиями страницы.
it:postgresql:foreign_keys [2024/10/04 07:23] – создано ura2404 | it:postgresql:foreign_keys [2024/10/04 07:26] (текущий) – ura2404 | ||
---|---|---|---|
Строка 2: | Строка 2: | ||
[[https:// | [[https:// | ||
+ | |||
+ | Postgres не строит индекс по src полю | ||
+ | |||
+ | __**Поиск недостающих | ||
+ | <code sql> | ||
+ | SELECT c.conrelid:: | ||
+ | /* list of key column names in order */ | ||
+ | | ||
+ | | ||
+ | pg_catalog.pg_relation_size(c.conrelid) | ||
+ | ) AS size, | ||
+ | | ||
+ | | ||
+ | FROM pg_catalog.pg_constraint c | ||
+ | /* enumerated key column numbers per foreign key */ | ||
+ | CROSS JOIN LATERAL | ||
+ | unnest(c.conkey) WITH ORDINALITY AS x(attnum, n) | ||
+ | /* name for each key column */ | ||
+ | JOIN pg_catalog.pg_attribute a | ||
+ | ON a.attnum = x.attnum | ||
+ | AND a.attrelid = c.conrelid | ||
+ | WHERE NOT EXISTS | ||
+ | /* is there a matching index for the constraint? */ | ||
+ | (SELECT 1 FROM pg_catalog.pg_index i | ||
+ | WHERE i.indrelid = c.conrelid | ||
+ | /* it must not be a partial index */ | ||
+ | AND i.indpred IS NULL | ||
+ | /* the first index columns must be the same as the | ||
+ | key columns, but order doesn' | ||
+ | AND (i.indkey:: | ||
+ | | ||
+ | AND c.contype = ' | ||
+ | GROUP BY c.conrelid, c.conname, c.confrelid | ||
+ | ORDER BY pg_catalog.pg_relation_size(c.conrelid) DESC; | ||
+ | </ | ||
+ |
it/postgresql/foreign_keys.1728026612.txt.gz · Последнее изменение: 2024/10/04 07:23 — ura2404