diff options
Diffstat (limited to 'src/include/nodes/primnodes.h')
| -rw-r--r-- | src/include/nodes/primnodes.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 8fbb9442b4..111ed7f8ce 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.66 2002/08/26 17:54:02 tgl Exp $ + * $Id: primnodes.h,v 1.67 2002/09/04 20:31:44 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -127,8 +127,8 @@ typedef struct RangeVar char *catalogname; /* the catalog (database) name, or NULL */ char *schemaname; /* the schema name, or NULL */ char *relname; /* the relation/sequence name */ - InhOption inhOpt; /* expand rel by inheritance? - * recursively act on children? */ + InhOption inhOpt; /* expand rel by inheritance? recursively + * act on children? */ bool istemp; /* is this a temp relation/sequence? */ Alias *alias; /* table alias & optional column aliases */ } RangeVar; @@ -182,7 +182,7 @@ typedef struct Oper Oid opid; /* PG_PROC OID of underlying function */ Oid opresulttype; /* PG_TYPE OID of result value */ bool opretset; /* true if operator returns set */ - FunctionCachePtr op_fcache; /* runtime state, else NULL */ + FunctionCachePtr op_fcache; /* runtime state, else NULL */ } Oper; /* @@ -192,9 +192,9 @@ typedef struct Func { NodeTag type; Oid funcid; /* PG_PROC OID of the function */ - Oid funcresulttype; /* PG_TYPE OID of result value */ + Oid funcresulttype; /* PG_TYPE OID of result value */ bool funcretset; /* true if function returns set */ - FunctionCachePtr func_fcache; /* runtime state, or NULL */ + FunctionCachePtr func_fcache; /* runtime state, or NULL */ } Func; /* @@ -528,7 +528,7 @@ typedef struct RangeTblRef * restricts visibility of the tables/columns inside it. * * During parse analysis, an RTE is created for the Join, and its index - * is filled into rtindex. This RTE is present mainly so that Vars can + * is filled into rtindex. This RTE is present mainly so that Vars can * be created that refer to the outputs of the join. *---------- */ |
