mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
D'Arcy's cleanups
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.4 1996/08/19 01:52:36 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeHash.c,v 1.5 1996/10/26 04:13:31 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -22,6 +22,7 @@
|
||||
#include <stdio.h> /* for sprintf() */
|
||||
#include <math.h>
|
||||
#include <sys/file.h>
|
||||
|
||||
#include "storage/fd.h" /* for SEEK_ */
|
||||
#include "storage/ipc.h"
|
||||
#include "storage/bufmgr.h" /* for BLCKSZ */
|
||||
@ -29,6 +30,7 @@
|
||||
#include "executor/nodeHash.h"
|
||||
#include "executor/nodeHashjoin.h"
|
||||
#include "utils/palloc.h"
|
||||
#include "utils/hsearch.h"
|
||||
|
||||
extern int NBuffers;
|
||||
static int HashTBSize;
|
||||
@ -55,7 +57,7 @@ ExecHash(Hash *node)
|
||||
ExprContext *econtext;
|
||||
|
||||
int nbatch;
|
||||
File *batches;
|
||||
File *batches = NULL;
|
||||
RelativeAddr *batchPos;
|
||||
int *batchSizes;
|
||||
int i;
|
||||
|
Reference in New Issue
Block a user