1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-11 10:01:57 +03:00

Remove unused #includes in *.c files.

This commit is contained in:
Bruce Momjian
1999-07-15 22:40:16 +00:00
parent 40a89e08b2
commit 2e6b1e63a3
238 changed files with 239 additions and 1460 deletions

View File

@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.16 1999/07/10 18:21:59 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/sort/Attic/lselect.c,v 1.17 1999/07/15 22:40:14 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -17,13 +17,8 @@
#include "postgres.h"
#include "storage/buf.h"
#include "access/skey.h"
#include "access/heapam.h"
#include "access/htup.h"
#include "utils/rel.h"
#include "utils/psort.h"
#include "utils/lselect.h"
/*

View File

@ -4,7 +4,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: psort.c,v 1.53 1999/05/25 22:42:22 momjian Exp $
* $Id: psort.c,v 1.54 1999/07/15 22:40:14 momjian Exp $
*
* NOTES
* Sorts the first relation into the second relation.
@ -40,19 +40,9 @@
#include "miscadmin.h"
#include "access/heapam.h"
#include "access/htup.h"
#include "access/relscan.h"
#include "access/skey.h"
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "nodes/execnodes.h"
#include "nodes/plannodes.h"
#include "storage/buf.h"
#include "storage/fd.h"
#include "utils/lselect.h"
#include "utils/portal.h" /* for {Start,End}PortalAllocMode */
#include "utils/psort.h"
#include "utils/rel.h"
static bool createfirstrun(Sort *node);
static bool createrun(Sort *node, BufFile *file);