diff options
author | Fujii Masao | 2025-07-04 14:25:40 +0000 |
---|---|---|
committer | Fujii Masao | 2025-07-04 14:25:40 +0000 |
commit | d64d68fddf9802dea4cc5be8a491937c3aefefa0 (patch) | |
tree | dedc0b3ac9b6debbafd1c7ba1dbc7fdaff9fe5e2 | |
parent | 5a6c39b6df3313e5c2d3aed714a56f5a5c6be3f2 (diff) |
amcheck: Remove unused IndexCheckableCallback typedef.
Commit d70b17636dd introduced the IndexCheckableCallback typedef for
a callback function, but it was never used. This commit removes
the unused typedef to clean up dead code.
Author: Fujii Masao <[email protected]>
Reviewed-by: Andrey Borodin <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | contrib/amcheck/verify_common.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/amcheck/verify_common.h b/contrib/amcheck/verify_common.h index e78adb68808..42ef9c20fe2 100644 --- a/contrib/amcheck/verify_common.h +++ b/contrib/amcheck/verify_common.h @@ -16,8 +16,7 @@ #include "utils/relcache.h" #include "miscadmin.h" -/* Typedefs for callback functions for amcheck_lock_relation_and_check */ -typedef void (*IndexCheckableCallback) (Relation index); +/* Typedef for callback function for amcheck_lock_relation_and_check */ typedef void (*IndexDoCheckCallback) (Relation rel, Relation heaprel, void *state, |