Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a9b1ff4c
Commit
a9b1ff4c
authored
Dec 07, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of lingering references to POSTQUEL query syntax, per Simon.
parent
13ea825b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/backend/executor/execProcnode.c
src/backend/executor/execProcnode.c
+4
-4
src/backend/executor/execTuples.c
src/backend/executor/execTuples.c
+2
-2
No files found.
src/backend/executor/execProcnode.c
View file @
a9b1ff4c
...
...
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.5
1 2005/10/15 02:49:16 momjian
Exp $
* $PostgreSQL: pgsql/src/backend/executor/execProcnode.c,v 1.5
2 2005/12/07 15:27:42 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -29,10 +29,10 @@
* and ExecEndNode in sync when new nodes are added.
*
* EXAMPLE
*
s
uppose we want the age of the manager of the shoe department and
* the number of employees in that department.
s
o we have the query:
*
S
uppose we want the age of the manager of the shoe department and
* the number of employees in that department.
S
o 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"
*
...
...
src/backend/executor/execTuples.c
View file @
a9b1ff4c
...
...
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.9
0 2005/11/25 04:24:48
tgl Exp $
* $PostgreSQL: pgsql/src/backend/executor/execTuples.c,v 1.9
1 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()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment