diff options
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 42 |
1 files changed, 17 insertions, 25 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index cb02d501047..2bda8a0765c 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.5 1996/11/03 23:57:19 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.6 1996/11/06 08:21:26 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -58,36 +58,28 @@ * #4,#5 are changing soon with pending rewrite of portal/protocol. * */ - -#include "postgres.h" - -#include "utils/syscache.h" -#include "access/relscan.h" -#include "access/xact.h" -#include "lib/dllist.h" -#include "utils/palloc.h" - -#include "tcop/dest.h" -#include "catalog/pg_proc.h" -#include "catalog/catname.h" -#include "catalog/pg_listener.h" - -#include "access/heapam.h" - -#include "storage/bufmgr.h" - -#include "nodes/memnodes.h" -#include "utils/mcxt.h" -#include "commands/async.h" - #include <unistd.h> #include <signal.h> #include <string.h> #include <errno.h> - #include <netinet/in.h> -#include "libpq/libpq.h" +#include <postgres.h> + +#include <utils/syscache.h> +#include <access/relscan.h> +#include <access/xact.h> +#include <lib/dllist.h> +#include <tcop/dest.h> +#include <catalog/pg_proc.h> +#include <catalog/catname.h> +#include <catalog/pg_listener.h> +#include <access/heapam.h> +#include <storage/bufmgr.h> +#include <nodes/memnodes.h> +#include <utils/mcxt.h> +#include <commands/async.h> +#include <libpq/libpq.h> static int notifyFrontEndPending = 0; static int notifyIssued = 0; |