diff options
Diffstat (limited to 'src/tools/backend/index.html')
-rw-r--r-- | src/tools/backend/index.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/tools/backend/index.html b/src/tools/backend/index.html index 241c4bb5d57..6d85edfcf84 100644 --- a/src/tools/backend/index.html +++ b/src/tools/backend/index.html @@ -71,9 +71,8 @@ transformFromClause().</A> Query.rtable holds the query's range table.</P><P> Certain queries, like <I>SELECT,</I> return columns of data. Other queries, like <I>INSERT</I> and <I>UPDATE,</I> specify the columns modified by the query. These column references are converted to <A -HREF="../../include/nodes/primnodes.h">Resdom</A> entries, which are -placed in <A HREF="../../include/nodes/parsenodes.h">target list -entries,</A> and linked together to make up the <I>target list</I> of +HREF="../../include/nodes/primnodes.h">TargetEntry</A> entries, which are +linked together to make up the <I>target list</I> of the query. The target list is stored in Query.targetList, which is generated by <A HREF="../../backend/parser/parse_target.c">transformTargetList().</A></P><P> |