Refactor ContainsOnlyLocalOrReferenceTables function to improve comment clarity

pull/7897/head
Mehmet Yilmaz 2025-02-12 18:52:15 +00:00 committed by Mehmet YILMAZ
parent 262a9b611e
commit c4819808dc
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}