From 1ccd423235a48739d6f7a4d7889705b5f9ecc69b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 7 Sep 1997 05:04:48 +0000 Subject: Massive commit to run PGINDENT on all *.c and *.h files. --- src/include/executor/execdesc.h | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) (limited to 'src/include/executor/execdesc.h') diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h index 2fb13bb9094..7f24b7630f0 100644 --- a/src/include/executor/execdesc.h +++ b/src/include/executor/execdesc.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * * execdesc.h-- - * plan and query descriptor accessor macros used by the executor - * and related modules. + * plan and query descriptor accessor macros used by the executor + * and related modules. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdesc.h,v 1.3 1996/11/05 08:18:31 scrappy Exp $ + * $Id: execdesc.h,v 1.4 1997/09/07 04:57:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,20 +19,22 @@ #include /* ---------------- - * query descriptor: - * a QueryDesc encapsulates everything that the executor - * needs to execute the query + * query descriptor: + * a QueryDesc encapsulates everything that the executor + * needs to execute the query * --------------------- */ -typedef struct QueryDesc { - CmdType operation; /* CMD_SELECT, CMD_UPDATE, etc. */ - Query *parsetree; - Plan *plantree; - CommandDest dest; /* the destination output of the execution */ -} QueryDesc; +typedef struct QueryDesc +{ + CmdType operation; /* CMD_SELECT, CMD_UPDATE, etc. */ + Query *parsetree; + Plan *plantree; + CommandDest dest; /* the destination output of the execution */ +} QueryDesc; /* in pquery.c */ -extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree, - CommandDest dest); +extern QueryDesc * +CreateQueryDesc(Query * parsetree, Plan * plantree, + CommandDest dest); -#endif /* EXECDESC_H */ +#endif /* EXECDESC_H */ -- cgit v1.2.3