]> granicus.if.org Git - postgresql/commit
Improve HJDEBUG code a bit.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 6 Feb 2016 20:05:23 +0000 (15:05 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 6 Feb 2016 20:05:23 +0000 (15:05 -0500)
commitbe11f8400d7d99e8ae6602f3175e04b4f0c99376
treec236a2c0195851b81930cb0feb9d9d0f76079940
parent392998bc58a985ea978c94c23594eb214d04c744
Improve HJDEBUG code a bit.

Commit 30d7ae3c76d2de144232ae6ab328ca86b70e72c3 introduced an HJDEBUG
stanza that probably didn't compile at the time, and definitely doesn't
compile now, because it refers to a nonexistent variable.  It doesn't seem
terribly useful anyway, so just get rid of it.

While I'm fooling with it, use %z modifier instead of the obsolete hack of
casting size_t to unsigned long, and include the HashJoinTable's address in
each printout so that it's possible to distinguish the activities of
multiple hashjoins occurring in one query.

Noted while trying to use HJDEBUG to investigate bug #13908.  Back-patch
to 9.5, because code that doesn't compile is certainly not very helpful.
src/backend/executor/nodeHash.c