diff options
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index 0e3cb83aa93..00016b0bca8 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -6,7 +6,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47 1999/05/25 16:08:15 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.47.2.1 1999/08/02 05:56:57 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -78,30 +78,23 @@ #include <unistd.h> #include <signal.h> -#include <string.h> #include <errno.h> -#include <sys/types.h> /* Needed by in.h on Ultrix */ +#include <sys/types.h> #include <netinet/in.h> #include "postgres.h" -#include "commands/async.h" #include "access/heapam.h" -#include "access/relscan.h" -#include "access/xact.h" #include "catalog/catname.h" #include "catalog/pg_listener.h" -#include "fmgr.h" +#include "commands/async.h" #include "lib/dllist.h" #include "libpq/libpq.h" #include "libpq/pqformat.h" #include "miscadmin.h" -#include "storage/bufmgr.h" -#include "storage/lmgr.h" -#include "tcop/dest.h" +#include "utils/ps_status.h" #include "utils/syscache.h" -#include <utils/trace.h> -#include <utils/ps_status.h> +#include "utils/trace.h" /* stuff that we really ought not be touching directly :-( */ extern TransactionState CurrentTransactionState; |