diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-03 21:35:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-11-03 21:35:57 +0000 |
commit | 60945aaf41d90d9bc0e41ada2890f10cdcb0b371 (patch) | |
tree | aa4bae99e256d239639cc543b7a5932e17170354 | |
parent | 66294e13fbe184f4ce5019fcaa7d33cd85b40c9b (diff) | |
download | postgresql-60945aaf41d90d9bc0e41ada2890f10cdcb0b371.tar.gz postgresql-60945aaf41d90d9bc0e41ada2890f10cdcb0b371.zip |
Fix a couple of missed None -> DestNone in comments.
-rw-r--r-- | src/backend/tcop/pquery.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/tcop/pquery.c b/src/backend/tcop/pquery.c index 72bfa23a756..a293610bdaf 100644 --- a/src/backend/tcop/pquery.c +++ b/src/backend/tcop/pquery.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.96 2005/11/03 17:11:38 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.97 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 DestNone. */ 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) |