diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-09-01 03:29:17 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-09-01 03:29:17 +0000 |
| commit | af74855a608da4cd7ef88ceb2241ec1c75537f39 (patch) | |
| tree | 912ecaa0cdd84297ad886df5ed7c046c7c501411 /src/include/nodes | |
| parent | 2aa080fc933cac47205bc79f026fc89dab0e5149 (diff) | |
| download | postgresql-af74855a608da4cd7ef88ceb2241ec1c75537f39.tar.gz | |
Renaming cleanup, no pgindent yet.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/nodes.h | 6 | ||||
| -rw-r--r-- | src/include/nodes/relation.h | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 9d1f12852b..b7fc3ede87 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.28 1998/08/25 21:37:02 scrappy Exp $ + * $Id: nodes.h,v 1.29 1998/09/01 03:28:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -79,11 +79,11 @@ typedef enum NodeTag T_OrderKey, T_JoinKey, T_MergeOrder, - T_CInfo, + T_ClauseInfo, T_JoinMethod, T_HInfo, T_MInfo, - T_JInfo, + T_JoinInfo, T_Iter, T_Stream, diff --git a/src/include/nodes/relation.h b/src/include/nodes/relation.h index 1187161144..69fb911921 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.9 1998/08/04 16:44:26 momjian Exp $ + * $Id: relation.h,v 1.10 1998/09/01 03:28:16 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -207,7 +207,7 @@ typedef struct JoinKey * clause info *******/ -typedef struct CInfo +typedef struct ClauseInfo { NodeTag type; Expr *clause; /* should be an OP clause */ @@ -221,7 +221,7 @@ typedef struct CInfo /* hashjoin only */ Oid hashjoinoperator; Relid cinfojoinid; -} CInfo; +} ClauseInfo; typedef struct JoinMethod { @@ -242,7 +242,7 @@ typedef struct MInfo MergeOrder *m_ordering; } MInfo; -typedef struct JInfo +typedef struct JoinInfo { NodeTag type; List *otherrels; @@ -250,7 +250,7 @@ typedef struct JInfo bool mergejoinable; bool hashjoinable; bool inactive; -} JInfo; +} JoinInfo; typedef struct Iter { @@ -285,7 +285,7 @@ typedef struct Stream { NodeTag type; Path *pathptr; - CInfo *cinfo; + ClauseInfo *cinfo; int *clausetype; struct Stream *upstream; struct Stream *downstream; |
