projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c4eb91
)
Fix obsolete SQL syntax in comment.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 14 Jan 2013 20:48:12 +0000
(15:48 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Mon, 14 Jan 2013 20:48:12 +0000
(15:48 -0500)
This was legal back in the days of add_missing_from, though perhaps
never good style. It's not legal anymore ...
Jan UrbaĆski
src/backend/executor/execProcnode.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/executor/execProcnode.c
b/src/backend/executor/execProcnode.c
index 4c1189e09406e0832e5d67075ad585bac7f41694..76dd62f71127124a8ea91291dd4d429d6c9705f3 100644
(file)
--- 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"
*