Add data for WAL in pg_stat_io and backend statistics
[pgsql.git] / contrib / amcheck / amcheck--1.0.sql
bloba6612d130c635c6089af654aa9e0cd64b617d711
1 /* contrib/amcheck/amcheck--1.0.sql */
3 -- complain if script is sourced in psql, rather than via CREATE EXTENSION
4 \echo Use "CREATE EXTENSION amcheck" to load this file. \quit
6 --
7 -- bt_index_check()
8 --
9 CREATE FUNCTION bt_index_check(index regclass)
10 RETURNS VOID
11 AS 'MODULE_PATHNAME', 'bt_index_check'
12 LANGUAGE C STRICT PARALLEL RESTRICTED;
15 -- bt_index_parent_check()
17 CREATE FUNCTION bt_index_parent_check(index regclass)
18 RETURNS VOID
19 AS 'MODULE_PATHNAME', 'bt_index_parent_check'
20 LANGUAGE C STRICT PARALLEL RESTRICTED;
22 -- Don't want these to be available to public
23 REVOKE ALL ON FUNCTION bt_index_check(regclass) FROM PUBLIC;
24 REVOKE ALL ON FUNCTION bt_index_parent_check(regclass) FROM PUBLIC;