missing-from-clause-in-comment.diff

text/x-diff

Filename: missing-from-clause-in-comment.diff
Type: text/x-diff
Part: 0
Message: fix SQL example syntax in file comment

Patch

Format: unified
File+
src/backend/executor/execProcnode.c 1 0
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c
index 4c1189e..76dd62f 100644
--- a/src/backend/executor/execProcnode.c
+++ b/src/backend/executor/execProcnode.c
@@ -32,6 +32,7 @@
  *		the number of employees in that department.  So we have the query:
  *
  *				select DEPT.no_emps, EMP.age
+ *				from DEPT, EMP
  *				where EMP.name = DEPT.mgr and
  *					  DEPT.name = "shoe"
  *