diff options
| author | Bruce Momjian | 1999-05-25 22:43:53 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-05-25 22:43:53 +0000 |
| commit | fcff1cdf4eadbc6dcba4b9a2cd09f38f466ffa31 (patch) | |
| tree | 5b4a877bed2a5229075e0e2a37c6f1431599ada6 /src/include/nodes | |
| parent | 4eadfe875440759bf062b02857ff196ab95d6fbc (diff) | |
Another pgindent run. Sorry folks.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/execnodes.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/memnodes.h | 6 | ||||
| -rw-r--r-- | src/include/nodes/parsenodes.h | 14 | ||||
| -rw-r--r-- | src/include/nodes/plannodes.h | 6 | ||||
| -rw-r--r-- | src/include/nodes/primnodes.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/relation.h | 14 |
6 files changed, 24 insertions, 24 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 134fa3e833f..21114d2455d 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: execnodes.h,v 1.29 1999/05/25 16:14:07 momjian Exp $ + * $Id: execnodes.h,v 1.30 1999/05/25 22:42:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -698,7 +698,7 @@ typedef struct TeeState MemoryContext tee_mcxt; HeapScanDesc tee_leftScanDesc, tee_rightScanDesc; -} TeeState; +} TeeState; #endif diff --git a/src/include/nodes/memnodes.h b/src/include/nodes/memnodes.h index 7259cb1b0f7..76f99204c20 100644 --- a/src/include/nodes/memnodes.h +++ b/src/include/nodes/memnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: memnodes.h,v 1.12 1999/05/25 16:14:09 momjian Exp $ + * $Id: memnodes.h,v 1.13 1999/05/25 22:42:55 momjian Exp $ * * XXX the typedefs in this file are different from the other ???nodes.h; * they are pointers to structures instead of the structures themselves. @@ -60,7 +60,7 @@ typedef struct MemoryContextData { NodeTag type; MemoryContextMethods method; -} MemoryContextData; +} MemoryContextData; /* utils/mcxt.h contains typedef struct MemoryContextData *MemoryContext */ @@ -73,7 +73,7 @@ typedef struct GlobalMemoryData AllocSetData setData; char *name; OrderedElemData elemData; -} GlobalMemoryData; +} GlobalMemoryData; /* utils/mcxt.h contains typedef struct GlobalMemoryData *GlobalMemory */ diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 441ffd9b01c..c427e2a8a71 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.73 1999/05/25 16:14:09 momjian Exp $ + * $Id: parsenodes.h,v 1.74 1999/05/25 22:42:57 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -457,7 +457,7 @@ typedef struct UnlistenStmt { NodeTag type; char *relname; /* relation to unlisten on */ -} UnlistenStmt; +} UnlistenStmt; /* ---------------------- * {Begin|Abort|End} Transaction Statement @@ -590,7 +590,7 @@ typedef struct LockStmt NodeTag type; char *relname; /* relation to lock */ int mode; /* lock mode */ -} LockStmt; +} LockStmt; /***************************************************************************** * Optimizable Statements @@ -748,7 +748,7 @@ typedef struct CaseExpr Node *arg; /* implicit equality comparison argument */ List *args; /* the arguments (list of WHEN clauses) */ Node *defresult; /* the default result (ELSE clause) */ -} CaseExpr; +} CaseExpr; /* * CaseWhen - an argument to a CASE expression @@ -758,7 +758,7 @@ typedef struct CaseWhen NodeTag type; Node *expr; /* comparison expression */ Node *result; /* substitution result */ -} CaseWhen; +} CaseWhen; /* * ColumnDef - column definition (used in various creates) @@ -896,7 +896,7 @@ typedef struct JoinExpr RangeVar *larg; Node *rarg; List *quals; -} JoinExpr; +} JoinExpr; /**************************************************************************** @@ -972,6 +972,6 @@ typedef struct RowMark NodeTag type; Index rti; /* index in Query->rtable */ bits8 info; /* as above */ -} RowMark; +} RowMark; #endif /* PARSENODES_H */ diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index ffa45b0bfe9..5c94d02932b 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: plannodes.h,v 1.26 1999/05/25 16:14:10 momjian Exp $ + * $Id: plannodes.h,v 1.27 1999/05/25 22:42:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -264,7 +264,7 @@ typedef struct Noname Plan plan; Oid nonameid; int keycount; -} Noname; +} Noname; /* ---------------- * materialization node @@ -338,7 +338,7 @@ typedef struct Tee List *rtentries; /* the range table for the plan below the * Tee may be different than the parent * plans */ -} Tee; +} Tee; #endif diff --git a/src/include/nodes/primnodes.h b/src/include/nodes/primnodes.h index 8028e07a94c..3b0cadfcdcd 100644 --- a/src/include/nodes/primnodes.h +++ b/src/include/nodes/primnodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: primnodes.h,v 1.28 1999/05/25 16:14:11 momjian Exp $ + * $Id: primnodes.h,v 1.29 1999/05/25 22:42:59 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -273,7 +273,7 @@ typedef struct Aggref Node *target; int aggno; bool usenulls; -} Aggref; +} Aggref; /* ---------------- * SubLink diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 4f45a6cafcc..5f629dd0e63 100644 --- a/src/include/nodes/relation.h +++ b/src/include/nodes/relation.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: relation.h,v 1.31 1999/05/25 16:14:12 momjian Exp $ + * $Id: relation.h,v 1.32 1999/05/25 22:43:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -100,7 +100,7 @@ typedef struct RelOptInfo List *restrictinfo; /* RestrictInfo structures */ List *joininfo; /* JoinInfo structures */ List *innerjoin; -} RelOptInfo; +} RelOptInfo; extern Var *get_expr(TargetEntry *foo); extern Var *get_groupclause_expr(GroupClause *groupClause, List *targetList); @@ -167,7 +167,7 @@ typedef struct NestPath List *pathinfo; Path *outerjoinpath; Path *innerjoinpath; -} NestPath; +} NestPath; typedef NestPath JoinPath; @@ -223,7 +223,7 @@ typedef struct RestrictInfo /* hashjoin only */ Oid hashjoinoperator; Relids restrictinfojoinid; -} RestrictInfo; +} RestrictInfo; typedef struct JoinMethod { @@ -236,13 +236,13 @@ typedef struct HashInfo { JoinMethod jmethod; Oid hashop; -} HashInfo; +} HashInfo; typedef struct MergeInfo { JoinMethod jmethod; MergeOrder *m_ordering; -} MergeInfo; +} MergeInfo; typedef struct JoinInfo { @@ -251,7 +251,7 @@ typedef struct JoinInfo List *jinfo_restrictinfo; bool mergejoinable; bool hashjoinable; -} JoinInfo; +} JoinInfo; typedef struct Iter { |
