From 8d2385898cdb1611ea4ca56f8762be01bba5b671 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 25 Jul 2012 08:57:36 -0400 Subject: [PATCH] Remove debugging code. --- src/backend/utils/hash/chash.c | 3 --- 1 file changed, 3 deletions(-) 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)); -- 2.39.5