From 9ff2fbdfb3056d5f80f3a98d6a4a09a82a48c66a Mon Sep 17 00:00:00 2001 From: paragjain Date: Thu, 4 Jul 2024 10:21:23 +0000 Subject: [PATCH] adding some changes --- src/backend/distributed/planner/merge_planner.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/backend/distributed/planner/merge_planner.c b/src/backend/distributed/planner/merge_planner.c index a954ea60a..417996310 100644 --- a/src/backend/distributed/planner/merge_planner.c +++ b/src/backend/distributed/planner/merge_planner.c @@ -1271,7 +1271,6 @@ ValidateAndReturnVarIfSupported(Node *entryExpr) * ON clause and verifies if there is a join, either left or right, with * the distribution column of the given target. Once a match is found, it * returns the index of that match in the source's target list. - * */ static int SourceResultPartitionColumnIndex(Query *mergeQuery, List *sourceTargetList, @@ -1280,8 +1279,8 @@ SourceResultPartitionColumnIndex(Query *mergeQuery, List *sourceTargetList, if (IsCitusTableType(targetRelation->relationId, SINGLE_SHARD_DISTRIBUTED)) { ereport(ERROR, (errmsg("MERGE operation across distributed schemas " - "or with a row-based distributed table is " - "not yet supported"))); + "or with a row-based distributed table is " + "not yet supported"))); } /* Get all the Join conditions from the ON clause */