From 02c63f9438e082ac58284eed52a9a46015a83432 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Tue, 22 Apr 2025 10:01:38 +0900 Subject: Rename injection point for invalidation messages at end of transaction This injection point was named "AtEOXact_Inval-with-transInvalInfo", not respecting the implied naming convention that injection points should use lower-case characters, with terms separated by dashes. All the other points defined in the tree follow this style, so let's be more consistent. Author: Hayato Kuroda Reviewed-by: Aleksander Alekseev Discussion: https://postgr.es/m/OSCPR01MB14966E14C1378DEE51FB7B7C5F5B32@OSCPR01MB14966.jpnprd01.prod.outlook.com Backpatch-through: 17 --- src/backend/utils/cache/inval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend') diff --git a/src/backend/utils/cache/inval.c b/src/backend/utils/cache/inval.c index c93679dfdcc..fa7b4d7e303 100644 --- a/src/backend/utils/cache/inval.c +++ b/src/backend/utils/cache/inval.c @@ -1207,7 +1207,7 @@ AtEOXact_Inval(bool isCommit) /* Must be at top of stack */ Assert(transInvalInfo->my_level == 1 && transInvalInfo->parent == NULL); - INJECTION_POINT("AtEOXact_Inval-with-transInvalInfo"); + INJECTION_POINT("transaction-end-process-inval"); if (isCommit) { -- cgit v1.2.3