From 340baa124283dc5ab73ee88b6c4c255072cec4f0 Mon Sep 17 00:00:00 2001 From: gurkanindibay Date: Wed, 10 Jan 2024 22:12:53 +0300 Subject: [PATCH] Fixes indentation --- src/backend/distributed/commands/utility_hook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/distributed/commands/utility_hook.c b/src/backend/distributed/commands/utility_hook.c index 0468c97d9..8b9cda741 100644 --- a/src/backend/distributed/commands/utility_hook.c +++ b/src/backend/distributed/commands/utility_hook.c @@ -98,7 +98,7 @@ /* * TwoPcStatementInfo is used to determine whether a statement is supported in 2PC * and whether it should be marked as distributed in 2PC. -*/ + */ typedef struct TwoPcStatementInfo { int statementType; @@ -111,7 +111,7 @@ typedef struct TwoPcStatementInfo * whether it should be marked as distributed in 2PC. * We use this array to avoid hardcoding the list of supported statements in * multiple places. -*/ + */ const TwoPcStatementInfo twoPcSupportedStatements[] = { { T_GrantRoleStmt, false }, { T_CreateRoleStmt, true }