From 5cd3c8ad11c433d79e55b607810023d87473e006 Mon Sep 17 00:00:00 2001 From: Gokhan Gulbiz Date: Wed, 15 Mar 2023 08:36:43 +0300 Subject: [PATCH] Indent --- src/backend/distributed/utils/attribute.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/distributed/utils/attribute.c b/src/backend/distributed/utils/attribute.c index 32d008848..3231d919d 100644 --- a/src/backend/distributed/utils/attribute.c +++ b/src/backend/distributed/utils/attribute.c @@ -627,7 +627,8 @@ ExtractTopComment(const char *inputString) commentEndCharsIndex += commentStartCharsLength; while (inputString[commentEndCharsIndex] && commentEndCharsIndex < inputStringLen && !(inputString[commentEndCharsIndex] == '*' && - inputString[commentEndCharsIndex + 1] == '/')) + inputString + [commentEndCharsIndex + 1] == '/')) { commentEndCharsIndex++; }