mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Remove no-longer-used fields in Hash and HashJoin nodes.
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: outfuncs.c,v 1.82 1999/05/17 17:03:13 momjian Exp $
|
||||
* $Id: outfuncs.c,v 1.83 1999/05/18 21:34:28 tgl Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||
@ -385,14 +385,11 @@ _outHashJoin(StringInfo str, HashJoin *node)
|
||||
_outNode(str, node->hashclauses);
|
||||
|
||||
appendStringInfo(str,
|
||||
" :hashjoinop %u :hashjointable 0x%x :hashjointablekey %d ",
|
||||
node->hashjoinop,
|
||||
(int) node->hashjointable,
|
||||
node->hashjointablekey);
|
||||
" :hashjoinop %u ",
|
||||
node->hashjoinop);
|
||||
|
||||
appendStringInfo(str,
|
||||
" :hashjointablesize %d :hashdone %d ",
|
||||
node->hashjointablesize,
|
||||
" :hashdone %d ",
|
||||
node->hashdone);
|
||||
}
|
||||
|
||||
@ -536,11 +533,6 @@ _outHash(StringInfo str, Hash *node)
|
||||
|
||||
appendStringInfo(str, " :hashkey ");
|
||||
_outNode(str, node->hashkey);
|
||||
|
||||
appendStringInfo(str, " :hashtable 0x%x :hashtablekey %d :hashtablesize %d ",
|
||||
(int) node->hashtable,
|
||||
node->hashtablekey,
|
||||
node->hashtablesize);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
|
Reference in New Issue
Block a user