From c60de03d6a18c535346758a6bc2818a1b992746f Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Wed, 15 Mar 2023 09:01:41 +0300 Subject: [PATCH] Indent --- src/backend/distributed/utils/attribute.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/backend/distributed/utils/attribute.c b/src/backend/distributed/utils/attribute.c index 89d75d2fa..a42e492d5 100644 --- a/src/backend/distributed/utils/attribute.c +++ b/src/backend/distributed/utils/attribute.c @@ -690,15 +690,15 @@ ExtractTopComment(const char *inputString) int commentEndCharsIndex = 0; /* If query starts with a comment */ - if (inputString[commentEndCharsIndex] == '/' && inputString[commentEndCharsIndex + - 1] == '*') + if (inputString[commentEndCharsIndex] == '/' && + inputString[commentEndCharsIndex + 1] == '*') { /* Skip the comment start characters */ commentEndCharsIndex += commentStartCharsLength; - while (inputString[commentEndCharsIndex] && commentEndCharsIndex < - inputStringLen && !(inputString[commentEndCharsIndex] == '*' && - inputString - [commentEndCharsIndex + 1] == '/')) + while (inputString[commentEndCharsIndex] && + commentEndCharsIndex < inputStringLen && + !(inputString[commentEndCharsIndex] == '*' && + inputString [commentEndCharsIndex + 1] == '/')) { commentEndCharsIndex++; }