From 2da1fb1ff80a2a1930fd66268abc6b352d645c7f Mon Sep 17 00:00:00 2001 From: gurkanindibay Date: Tue, 23 Jan 2024 16:07:55 +0300 Subject: [PATCH] Adds comnment for the new method --- src/backend/distributed/commands/utility_hook.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/backend/distributed/commands/utility_hook.c b/src/backend/distributed/commands/utility_hook.c index 512f20c44..636ef2df9 100644 --- a/src/backend/distributed/commands/utility_hook.c +++ b/src/backend/distributed/commands/utility_hook.c @@ -1711,6 +1711,9 @@ IsStatementSupportedIn2PC(Node *parsetree) return false; } +/* + * IsObjectTypeSupported returns true if the object type is supported in 2pc + */ bool IsObjectTypeSupported(Node *parsetree, TwoPcStatementInfo twoPcSupportedStatement) { NodeTag type = nodeTag(parsetree);