CHashTableSuppressGC(table, bucket);
/* Scan bucket. */
- elog(LOG, "table=%p table->bucket=%p", table, table->bucket);
c = table->bucket[bucket].head;
for (;;)
{
/* 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));