Minor code beautification.
authorRobert Haas <rhaas@postgresql.org>
Mon, 30 Jul 2012 16:24:53 +0000 (16:24 +0000)
committerRobert Haas <rhaas@postgresql.org>
Mon, 30 Jul 2012 16:24:53 +0000 (16:24 +0000)
src/backend/utils/hash/chash.c

index bfcf809d3648fe3636a3f353778a116381ae3578..555dd41a519ac23b057f05339c8794bea712f11a 100644 (file)
@@ -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;