Remove debugging code.
authorRobert Haas <[email protected]>
Wed, 25 Jul 2012 12:57:36 +0000 (08:57 -0400)
committerRobert Haas <[email protected]>
Wed, 25 Jul 2012 12:57:36 +0000 (08:57 -0400)
src/backend/utils/hash/chash.c

index ab8c759978eabae304547ae488b3163198a43020..4fc4e143f3ffb2d7681862646139004d0d55d0b4 100644 (file)
@@ -377,7 +377,6 @@ CHashSearch(CHashTable table, void *entry)
        CHashTableSuppressGC(table, bucket);
 
        /* Scan bucket. */
-       elog(LOG, "table=%p table->bucket=%p", table, table->bucket);
        c = table->bucket[bucket].head;
        for (;;)
        {
@@ -386,8 +385,6 @@ CHashSearch(CHashTable table, void *entry)
                /* If we've reached the end of the bucket chain, stop. */
                if (c == InvalidCHashPtr)
                        break;
-               elog(LOG, "table->nbuckets=%d table->bucket_mask=%d bucket=%d c=%d",
-                                       (int) table->nbuckets, table->bucket_mask, (int) bucket, (int) c);
 
                /* Compare current node by hashcode, then by memcmp. */
                n = CHashTableGetNode(table, CHashPtrGetOffset(c));