diff options
Diffstat (limited to 'src/backend/commands/dbcommands.c')
-rw-r--r-- | src/backend/commands/dbcommands.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/backend/commands/dbcommands.c b/src/backend/commands/dbcommands.c index 06f0a8115a5..72a53f3c9d6 100644 --- a/src/backend/commands/dbcommands.c +++ b/src/backend/commands/dbcommands.c @@ -7,31 +7,22 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.35 1999/05/25 16:08:21 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/dbcommands.c,v 1.35.2.1 1999/08/02 05:56:58 scrappy Exp $ * *------------------------------------------------------------------------- */ -#include <stdio.h> -#include <string.h> #include <signal.h> #include <sys/stat.h> #include "postgres.h" #include "access/heapam.h" -#include "access/htup.h" -#include "access/relscan.h" #include "catalog/catname.h" #include "catalog/pg_database.h" #include "catalog/pg_shadow.h" -#include "fmgr.h" -#include "miscadmin.h" /* for DataDir */ -#include "storage/bufmgr.h" -#include "storage/fd.h" -#include "storage/lmgr.h" -#include "tcop/tcopprot.h" #include "commands/dbcommands.h" -#include "utils/rel.h" +#include "miscadmin.h" +#include "tcop/tcopprot.h" #include "utils/syscache.h" |