From 9a7fda57eefacf8241809ec00210b9d1be5f5878 Mon Sep 17 00:00:00 2001 From: "Marc G. Fournier" Date: Mon, 21 Oct 1996 09:37:26 +0000 Subject: -Wall'd --- src/backend/commands/async.c | 72 ++++++++++++++++++++++++++------------------ 1 file changed, 42 insertions(+), 30 deletions(-) (limited to 'src/backend/commands/async.c') diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index e131a492636..351c7196a61 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.3 1996/10/18 05:59:15 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.4 1996/10/21 09:37:20 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -59,51 +59,63 @@ * */ -#include -#include -#include #include "postgres.h" -#include "access/attnum.h" -#include "access/heapam.h" -#include "access/htup.h" -#include "access/relscan.h" +#include "catalog/pg_attribute.h" +#include "access/attnum.h" +#include "nodes/pg_list.h" +#include "access/tupdesc.h" +#include "storage/fd.h" +#include "catalog/pg_am.h" +#include "catalog/pg_class.h" +#include "nodes/nodes.h" +#include "rewrite/prs2lock.h" #include "access/skey.h" -#include "utils/builtins.h" +#include "access/strat.h" +#include "utils/rel.h" + +#include "storage/block.h" +#include "storage/off.h" +#include "storage/itemptr.h" +#include +#include "utils/nabstime.h" +#include "access/htup.h" + #include "utils/tqual.h" +#include "storage/buf.h" +#include "access/relscan.h" + #include "access/xact.h" -#include "commands/async.h" -#include "commands/copy.h" -#include "storage/buf.h" -#include "storage/itemptr.h" -#include "miscadmin.h" -#include "utils/portal.h" -#include "utils/excid.h" -#include "utils/elog.h" -#include "utils/mcxt.h" +#include "lib/dllist.h" + #include "utils/palloc.h" -#include "utils/rel.h" -#include "nodes/pg_list.h" #include "tcop/dest.h" -#include "commands/command.h" - -#include "catalog/catname.h" -#include "utils/syscache.h" -#include "catalog/pg_attribute.h" #include "catalog/pg_proc.h" -#include "catalog/pg_class.h" -#include "catalog/pg_type.h" +#include "catalog/catname.h" #include "catalog/pg_listener.h" -#include "executor/execdefs.h" -/* #include "executor/execdesc.h"*/ +#include "access/heapam.h" +#include +#include "storage/ipc.h" #include "storage/bufmgr.h" -#include "lib/dllist.h" + +#include "nodes/memnodes.h" +#include "utils/mcxt.h" +#include "commands/async.h" + +#include +#include +#include +#include + +#include +#include "libpq/pqcomm.h" #include "libpq/libpq.h" +#include "utils/syscache.h" static int notifyFrontEndPending = 0; static int notifyIssued = 0; -- cgit v1.2.3