sanity_check.sql
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

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