Skip to content

Commit 60945aa

Browse files
committed
Fix a couple of missed None -> DestNone in comments.
1 parent 66294e1 commit 60945aa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/tcop/pquery.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.96 2005/11/03 17:11:38 alvherre Exp $
11+
* $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.97 2005/11/03 21:35:57 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -376,7 +376,7 @@ PortalStart(Portal portal, ParamListInfo params, Snapshot snapshot)
376376

377377
/*
378378
* Create QueryDesc in portal's context; for the moment, set
379-
* the destination to None.
379+
* the destination to DestNone.
380380
*/
381381
queryDesc = CreateQueryDesc((Query *) linitial(portal->parseTrees),
382382
(Plan *) linitial(portal->planTrees),
@@ -757,8 +757,8 @@ PortalRunSelect(Portal portal,
757757

758758
/*
759759
* Force the queryDesc destination to the right thing. This supports
760-
* MOVE, for example, which will pass in dest = None. This is okay to
761-
* change as long as we do it on every fetch. (The Executor must not
760+
* MOVE, for example, which will pass in dest = DestNone. This is okay
761+
* to change as long as we do it on every fetch. (The Executor must not
762762
* assume that dest never changes.)
763763
*/
764764
if (queryDesc)

0 commit comments

Comments
 (0)