From 1a99b73b6959ec0def2c3a83364e7fae6c2a4fde Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 30 Jul 2012 16:24:53 +0000 Subject: [PATCH] Minor code beautification. --- src/backend/utils/hash/chash.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/backend/utils/hash/chash.c b/src/backend/utils/hash/chash.c index bfcf809d36..555dd41a51 100644 --- a/src/backend/utils/hash/chash.c +++ b/src/backend/utils/hash/chash.c @@ -656,7 +656,6 @@ zap: CHashAddToGarbage(table, hashcode & table->bucket_mask, target); target = CHashPtrUnmark(next); - continue; } else { @@ -687,8 +686,8 @@ zap: table->s_scan_restart++; goto retry; } - continue; } + continue; } /* @@ -801,7 +800,6 @@ retry: CHashAddToGarbage(table, hashcode & table->bucket_mask, target); target = CHashPtrUnmark(next); - continue; } else { @@ -809,8 +807,8 @@ retry: target = *pointer_to_target; if (CHashPtrIsMarked(target)) goto retry; - continue; } + continue; } pointer_to_target = &target_node->next; -- 2.39.5