3717dc149e
This is the beginning of a collection of SQL-callable functions to verify the integrity of data files. For now it only contains code to verify B-Tree indexes. This adds two SQL-callable functions, validating B-Tree consistency to a varying degree. Check the, extensive, docs for details. The goal is to later extend the coverage of the module to further access methods, possibly including the heap. Once checks for additional access methods exist, we'll likely add some "dispatch" functions that cover multiple access methods. Author: Peter Geoghegan, editorialized by Andres Freund Reviewed-By: Andres Freund, Tomas Vondra, Thomas Munro, Anastasia Lubennikova, Robert Haas, Amit Langote Discussion: CAM3SWZQzLMhMwmBqjzK+pRKXrNUZ4w90wYMUWfkeV8mZ3Debvw@mail.gmail.com
24 lines
704 B
SQL
24 lines
704 B
SQL
/* contrib/amcheck/amcheck--1.0.sql */
|
|
|
|
-- complain if script is sourced in psql, rather than via CREATE EXTENSION
|
|
\echo Use "CREATE EXTENSION amcheck" to load this file. \quit
|
|
|
|
--
|
|
-- bt_index_check()
|
|
--
|
|
CREATE FUNCTION bt_index_check(index regclass)
|
|
RETURNS VOID
|
|
AS 'MODULE_PATHNAME', 'bt_index_check'
|
|
LANGUAGE C STRICT PARALLEL RESTRICTED;
|
|
|
|
--
|
|
-- bt_index_parent_check()
|
|
--
|
|
CREATE FUNCTION bt_index_parent_check(index regclass)
|
|
RETURNS VOID
|
|
AS 'MODULE_PATHNAME', 'bt_index_parent_check'
|
|
LANGUAGE C STRICT PARALLEL RESTRICTED;
|
|
|
|
-- Don't want these to be available to public
|
|
REVOKE ALL ON FUNCTION bt_index_check(regclass) FROM PUBLIC;
|
|
REVOKE ALL ON FUNCTION bt_index_parent_check(regclass) FROM PUBLIC;
|