From: Robert Haas Date: Wed, 25 Jul 2012 12:57:36 +0000 (-0400) Subject: Remove debugging code. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=eb3a687727e69f462cd740358d2cb34bbe5038a9;p=users%2Fandresfreund%2Fpostgres.git Remove debugging code. --- diff --git a/src/backend/utils/hash/chash.c b/src/backend/utils/hash/chash.c index ab8c759978..4fc4e143f3 100644 --- a/src/backend/utils/hash/chash.c +++ b/src/backend/utils/hash/chash.c @@ -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));