From 325c54b69cbddc03445ca6c3198d2998c5d5818f Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 14 Jan 2013 15:48:12 -0500 Subject: [PATCH] Fix obsolete SQL syntax in comment. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index 4c1189e094..76dd62f711 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" *