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
60945aaf
Commit
60945aaf
authored
Nov 03, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a couple of missed None -> DestNone in comments.
parent
66294e13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/backend/tcop/pquery.c
src/backend/tcop/pquery.c
+4
-4
No files found.
src/backend/tcop/pquery.c
View file @
60945aaf
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.9
6 2005/11/03 17:11:38 alvherre
Exp $
* $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.9
7 2005/11/03 21:35:57 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -376,7 +376,7 @@ PortalStart(Portal portal, ParamListInfo params, Snapshot snapshot)
/*
* Create QueryDesc in portal's context; for the moment, set
* the destination to None.
* the destination to
Dest
None.
*/
queryDesc
=
CreateQueryDesc
((
Query
*
)
linitial
(
portal
->
parseTrees
),
(
Plan
*
)
linitial
(
portal
->
planTrees
),
...
...
@@ -757,8 +757,8 @@ PortalRunSelect(Portal portal,
/*
* Force the queryDesc destination to the right thing. This supports
* MOVE, for example, which will pass in dest =
None. This is okay to
* change as long as we do it on every fetch. (The Executor must not
* MOVE, for example, which will pass in dest =
DestNone. This is okay
*
to
change as long as we do it on every fetch. (The Executor must not
* assume that dest never changes.)
*/
if
(
queryDesc
)
...
...
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