aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeHash.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2006-05-23 15:21:52 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2006-05-23 15:21:52 +0000
commit798e63ffb00c053c7b05e8f07be6446e70fb4389 (patch)
treef3ac2591243af669110b4b4a55e2557dd6aaee74 /src/backend/executor/nodeHash.c
parent74d0cf397487e7fe248990a3519b06b72595c87f (diff)
downloadpostgresql-798e63ffb00c053c7b05e8f07be6446e70fb4389.tar.gz
postgresql-798e63ffb00c053c7b05e8f07be6446e70fb4389.zip
Remove CXT_printf/CXT1_printf macros. If anyone had found them to be of
any use in the past many years, we'd have made some effort to include them in all executor node types; but in fact they were only in nodeAppend.c and nodeIndexscan.c, up until I copied nodeIndexscan.c's occurrence into the new bitmap node types. Remove some other unused macros in execdebug.h, too. Some day the whole header probably ought to go away in favor of better-designed facilities.
Diffstat (limited to 'src/backend/executor/nodeHash.c')
-rw-r--r--src/backend/executor/nodeHash.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c
index 75958a6da30..a34e6860f86 100644
--- a/src/backend/executor/nodeHash.c
+++ b/src/backend/executor/nodeHash.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.101 2006/03/05 15:58:26 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/nodeHash.c,v 1.102 2006/05/23 15:21:52 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -123,8 +123,6 @@ ExecInitHash(Hash *node, EState *estate, int eflags)
/* check for unsupported flags */
Assert(!(eflags & (EXEC_FLAG_BACKWARD | EXEC_FLAG_MARK)));
- SO_printf("ExecInitHash: initializing hash node\n");
-
/*
* create state structure
*/