From ae27079a9f944460dfefdde5486ca66aca94c829 Mon Sep 17 00:00:00 2001 From: Muhammad Usama Date: Mon, 1 Dec 2025 19:24:13 +0300 Subject: [PATCH] Indent fix --- .../distributed/planner/relation_restriction_equivalence.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/distributed/planner/relation_restriction_equivalence.c b/src/backend/distributed/planner/relation_restriction_equivalence.c index 5b8ca7001..39452c53e 100644 --- a/src/backend/distributed/planner/relation_restriction_equivalence.c +++ b/src/backend/distributed/planner/relation_restriction_equivalence.c @@ -894,7 +894,7 @@ GenerateAttributeEquivalencesForRelationRestrictions(RelationRestrictionContext hasVar = true; } else if (member->em_is_const && - !IsA(expr, Param) && !IsA(expr, Const)) + !IsA(expr, Param) && !IsA(expr, Const)) { /* * Found a pseudoconstant expression (no Vars) that's not a @@ -1158,7 +1158,7 @@ MergeEquivalenceClassesWithSameFunctions(RelationRestrictionContext *restriction * This handles subqueries, UNION ALL, LATERAL joins, etc. */ AddToAttributeEquivalenceClass(mergedClass, - relRestriction->plannerInfo, var); + relRestriction->plannerInfo, var); foundMatch = true; break; } @@ -1172,7 +1172,7 @@ MergeEquivalenceClassesWithSameFunctions(RelationRestrictionContext *restriction if (!foundMatch) { elog(DEBUG2, "Skipping Var with varno=%d in RLS merge - " - "no matching RelationRestriction found", var->varno); + "no matching RelationRestriction found", var->varno); } }