aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2005-12-07 15:27:42 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2005-12-07 15:27:42 +0000
commita9b1ff4c1d699c8aa615397d47bb3071275c64ef (patch)
tree3df4e41eb4ee792784883bcdf5dc8f1642222876 /src/backend/executor
parent13ea825b6d57eefb3cca72d7ad9cba8651ee2c16 (diff)
downloadpostgresql-a9b1ff4c1d699c8aa615397d47bb3071275c64ef.tar.gz
postgresql-a9b1ff4c1d699c8aa615397d47bb3071275c64ef.zip
Fix a couple of lingering references to POSTQUEL query syntax, per Simon.
Diffstat (limited to 'src/backend/executor')
-rw-r--r--src/backend/executor/execProcnode.c8
-rw-r--r--src/backend/executor/execTuples.c4
2 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c
index fe067086d3b..c8b8d419512 100644
--- a/src/backend/executor/execProcnode.c
+++ b/src/backend/executor/execProcnode.c
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.51 2005/10/15 02:49:16 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.52 2005/12/07 15:27:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -29,10 +29,10 @@
* and ExecEndNode in sync when new nodes are added.
*
* EXAMPLE
- * suppose we want the age of the manager of the shoe department and
- * the number of employees in that department. so we have the query:
+ * Suppose we want the age of the manager of the shoe department and
+ * the number of employees in that department. So we have the query:
*
- * retrieve (DEPT.no_emps, EMP.age)
+ * select DEPT.no_emps, EMP.age
* where EMP.name = DEPT.mgr and
* DEPT.name = "shoe"
*
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c
index 09c7dd55f50..d749ffd8072 100644
--- a/src/backend/executor/execTuples.c
+++ b/src/backend/executor/execTuples.c
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.90 2005/11/25 04:24:48 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.91 2005/12/07 15:27:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -48,7 +48,7 @@
* ExecTypeFromTL - form a TupleDesc from a target list
*
* EXAMPLE OF HOW TABLE ROUTINES WORK
- * Suppose we have a query such as retrieve (EMP.name) and we have
+ * Suppose we have a query such as SELECT emp.name FROM emp and we have
* a single SeqScan node in the query plan.
*
* At ExecutorStart()