mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -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;
|
||
|
|
|