diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2025-09-25 15:27:33 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2025-09-25 15:27:33 +0200 |
commit | 0b3ce7878af757b8c91721ccecbbb75c10a22ef4 (patch) | |
tree | bd7374f336dafdc4a85ad2047d4692ab7dbac1f4 /src | |
parent | d8f07dbb81a169ff8d54c6684c0ca385b83de757 (diff) |
Remove preprocessor guards from injection points
When defining an injection point there is no need to wrap the definition
with USE_INJECTION_POINT guards, the INJECTION_POINT macro is available
in all builds. Remove to make the code consistent.
Author: Hayato Kuroda <kuroda.hayato@fujitsu.com>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/OSCPR01MB14966C8015DEB05ABEF2CE077F51FA@OSCPR01MB14966.jpnprd01.prod.outlook.com
Backpatch-through: 17
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index eac1de75ed0..109713315c0 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -7354,9 +7354,7 @@ CreateCheckPoint(int flags) if (PriorRedoPtr != InvalidXLogRecPtr) UpdateCheckPointDistanceEstimate(RedoRecPtr - PriorRedoPtr); -#ifdef USE_INJECTION_POINTS INJECTION_POINT("checkpoint-before-old-wal-removal", NULL); -#endif /* * Delete old log files, those no longer needed for last checkpoint to |