summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorBruce Momjian1998-07-24 04:03:10 +0000
committerBruce Momjian1998-07-24 04:03:10 +0000
commit128d827d4bd4334bb0370a52790b3ec0f41eed57 (patch)
tree66df4c8a403b280266b26c77328df8f465a169b0 /src/tools
parentbf00bbb0c4940b80b46b7e5b379cd64184f2262f (diff)
I'm sorry, but I think I introduced a little bug with my last patch.
Everyone using an [NOT] EXISTS subquery will have noticed that already. The bug is in "subselect.c" in the function "SS_process_sublinks()". Here the whole function as it *SHOULD BE*: Stephan
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/backend/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/backend/index.html b/src/tools/backend/index.html
index 300061deae..e1538affc4 100644
--- a/src/tools/backend/index.html
+++ b/src/tools/backend/index.html
@@ -78,7 +78,7 @@ 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,</I> and linked together to make up the <I>target list</I> of
+entries,</A> and 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>