Skip to content
Snippets Groups Projects
Commit 947eb975 authored by Neil Conway's avatar Neil Conway
Browse files

Update some comments to use SQL examples rather than QUEL. From Simon

Riggs.
parent a7f2a788
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/nodeAppend.c,v 1.62 2004/12/31 21:59:45 pgsql Exp $ * $PostgreSQL: pgsql/src/backend/executor/nodeAppend.c,v 1.63 2005/04/24 11:46:20 neilc Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
* and student-emp inherits from student and employee, the * and student-emp inherits from student and employee, the
* query: * query:
* *
* retrieve (e.name) from e in person* * select name from person
* *
* generates the plan: * generates the plan:
* *
......
...@@ -8,15 +8,13 @@ ...@@ -8,15 +8,13 @@
* Result nodes are used in queries where no relations are scanned. * Result nodes are used in queries where no relations are scanned.
* Examples of such queries are: * Examples of such queries are:
* *
* retrieve (x = 1) * select 1 * 2
* and
* append emp (name = "mike", salary = 15000)
* *
* Result nodes are also used to optimise queries with constant * Result nodes are also used to optimise queries with constant
* qualifications (ie, quals that do not depend on the scanned data), * qualifications (ie, quals that do not depend on the scanned data),
* such as: * such as:
* *
* retrieve (emp.all) where 2 > 1 * select * from emp where 2 > 1
* *
* In this case, the plan generated is * In this case, the plan generated is
* *
...@@ -24,9 +22,10 @@ ...@@ -24,9 +22,10 @@
* / * /
* SeqScan (emp.all) * SeqScan (emp.all)
* *
* At runtime, the Result node evaluates the constant qual once. * At runtime, the Result node evaluates the constant qual once,
* If it's false, we can return an empty result set without running * which is shown by EXPLAIN as a One-Time Filter. If it's
* the controlled plan at all. If it's true, we run the controlled * false, we can return an empty result set without running the
* controlled plan at all. If it's true, we run the controlled
* plan normally and pass back the results. * plan normally and pass back the results.
* *
* *
...@@ -34,7 +33,7 @@ ...@@ -34,7 +33,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/nodeResult.c,v 1.29 2004/12/31 21:59:45 pgsql Exp $ * $PostgreSQL: pgsql/src/backend/executor/nodeResult.c,v 1.30 2005/04/24 11:46:21 neilc Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment