diff --git a/src/backend/distributed/planner/multi_router_planner.c b/src/backend/distributed/planner/multi_router_planner.c index 08bb8047556..13d62c765a6 100644 --- a/src/backend/distributed/planner/multi_router_planner.c +++ b/src/backend/distributed/planner/multi_router_planner.c @@ -2563,8 +2563,8 @@ AllShardsColocated(List *relationShardList) bool ContainsOnlyLocalOrReferenceTables(RTEListProperties *rteProperties) { - // If hasDistributedTable is false, then all tables are either local or reference. - return !rteProperties->hasDistributedTable; + /* If hasDistributedTable is false, then all tables are either local or reference. */ + return !rteProperties->hasDistributedTable; }