Fix obsolete SQL syntax in comment.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 14 Jan 2013 20:48:12 +0000 (15:48 -0500)
committerTom 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

index 4c1189e09406e0832e5d67075ad585bac7f41694..76dd62f71127124a8ea91291dd4d429d6c9705f3 100644 (file)
@@ -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"
  *