From bbf8d9c99412046d7fb6aa740690c6e4b4578766 Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Thu, 28 Sep 2023 16:33:36 +0300 Subject: [PATCH] err msg update --- src/backend/distributed/operations/shard_rebalancer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/distributed/operations/shard_rebalancer.c b/src/backend/distributed/operations/shard_rebalancer.c index 14f927fe6..c3f17ca9b 100644 --- a/src/backend/distributed/operations/shard_rebalancer.c +++ b/src/backend/distributed/operations/shard_rebalancer.c @@ -814,9 +814,9 @@ AcquirePlacementColocationLock(Oid relationId, int lockMode, ereport(ERROR, (errmsg("could not acquire the lock required to %s %s", operationName, generate_qualified_relation_name(relationId)), - errdetail("It means that either a concurrent shard move " - "or colocated distributed table creation is " - "happening."), + errdetail("It means that either a concurrent shard move, " + "colocated distributed table creation or " + "shard property change is happening."), errhint("Make sure that the concurrent operation has " "finished and re-run the command"))); }