mirror of
https://github.com/postgres/postgres.git
synced 2026-04-26 00:31:07 -04:00
10 lines
177 B
MySQL
10 lines
177 B
MySQL
|
|
--
|
||
|
|
-- 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;
|
||
|
|
|