diff options
Diffstat (limited to 'src/include/executor/execdesc.h')
-rw-r--r-- | src/include/executor/execdesc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/executor/execdesc.h b/src/include/executor/execdesc.h index 7f24b7630f0..f97e196f4fe 100644 --- a/src/include/executor/execdesc.h +++ b/src/include/executor/execdesc.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execdesc.h,v 1.4 1997/09/07 04:57:47 momjian Exp $ + * $Id: execdesc.h,v 1.5 1997/09/08 02:36:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -26,11 +26,11 @@ */ typedef struct QueryDesc { - CmdType operation; /* CMD_SELECT, CMD_UPDATE, etc. */ - Query *parsetree; - Plan *plantree; - CommandDest dest; /* the destination output of the execution */ -} 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 * |