We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent677e791 commitf135090Copy full SHA for f135090
src/pathman_workers.c
@@ -545,14 +545,12 @@ bgw_main_concurrent_part(Datum main_arg)
545
546
/* Great, now relation is locked */
547
rel_locked= true;
548
-(void)rel_locked;/* mute clang analyzer */
549
550
/* Make sure that relation exists */
551
if (!SearchSysCacheExists1(RELOID,ObjectIdGetDatum(part_slot->relid)))
552
{
553
/* Exit after we raise ERROR */
554
failures_count=PART_WORKER_MAX_ATTEMPTS;
555
-(void)failures_count;/* mute clang analyzer */
556
557
elog(ERROR,"relation %u does not exist",part_slot->relid);
558
}
@@ -562,7 +560,6 @@ bgw_main_concurrent_part(Datum main_arg)
562
560
563
561
564
565
566
567
elog(ERROR,"relation \"%s\" is not partitioned",
568
get_rel_name(part_slot->relid));