blob: e7c337761bf106e5c03c26ce67b428700cc9681c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
VACUUM;
--
-- sanity check, if we don't have indices the test will take years to
-- complete.
--
SELECT relname, relhasindex
FROM pg_class
WHERE relhasindex
ORDER BY relname;
|