Remove debugging code.
authorRobert Haas <rhaas@postgresql.org>
Wed, 25 Jul 2012 12:57:36 +0000 (08:57 -0400)
committerRobert Haas <rhaas@postgresql.org>
Mon, 13 Oct 2014 17:13:54 +0000 (13:13 -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));