gooderp18绿色标准版
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
705B

  1. /* contrib/amcheck/amcheck--1.1--1.2.sql */
  2. -- complain if script is sourced in psql, rather than via CREATE EXTENSION
  3. \echo Use "ALTER EXTENSION amcheck UPDATE TO '1.2'" to load this file. \quit
  4. -- In order to avoid issues with dependencies when updating amcheck to 1.2,
  5. -- create new, overloaded version of the 1.1 function signature
  6. --
  7. -- bt_index_parent_check()
  8. --
  9. CREATE FUNCTION bt_index_parent_check(index regclass,
  10. heapallindexed boolean, rootdescend boolean)
  11. RETURNS VOID
  12. AS 'MODULE_PATHNAME', 'bt_index_parent_check'
  13. LANGUAGE C STRICT PARALLEL RESTRICTED;
  14. -- Don't want this to be available to public
  15. REVOKE ALL ON FUNCTION bt_index_parent_check(regclass, boolean, boolean) FROM PUBLIC;
上海开阖软件有限公司 沪ICP备12045867号-1