From 6a68f42648f54690ad5b5ae6fb9104e86e15f0f1 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 31 May 2000 00:28:42 +0000 Subject: The heralded `Grand Unified Configuration scheme' (GUC) That means you can now set your options in either or all of $PGDATA/configuration, some postmaster option (--enable-fsync=off), or set a SET command. The list of options is in backend/utils/misc/guc.c, documentation will be written post haste. pg_options is gone, so is that pq_geqo config file. Also removed were backend -K, -Q, and -T options (no longer applicable, although -d0 does the same as -Q). Added to configure an --enable-syslog option. changed all callers from TPRINTF to elog(DEBUG) --- src/backend/executor/nodeHash.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/backend/executor/nodeHash.c') diff --git a/src/backend/executor/nodeHash.c b/src/backend/executor/nodeHash.c index 1d841576fea..a35bee555c8 100644 --- a/src/backend/executor/nodeHash.c +++ b/src/backend/executor/nodeHash.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * - * $Id: nodeHash.c,v 1.45 2000/04/18 05:43:01 tgl Exp $ + * $Id: nodeHash.c,v 1.46 2000/05/31 00:28:17 petere Exp $ * *------------------------------------------------------------------------- */ @@ -27,10 +27,9 @@ #include "executor/executor.h" #include "executor/nodeHash.h" #include "executor/nodeHashjoin.h" +#include "miscadmin.h" #include "utils/portal.h" -extern int SortMem; - static int hashFunc(Datum key, int len, bool byVal); /* ---------------------------------------------------------------- -- cgit v1.2.3