|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.96 2005/11/0317:11:38 alvherre Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/tcop/pquery.c,v 1.97 2005/11/0321:35:57 tgl Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
@@ -376,7 +376,7 @@ PortalStart(Portal portal, ParamListInfo params, Snapshot snapshot) |
376 | 376 |
|
377 | 377 | /* |
378 | 378 | * Create QueryDesc in portal's context; for the moment, set |
379 | | - * the destination toNone. |
| 379 | + * the destination toDestNone. |
380 | 380 | */ |
381 | 381 | queryDesc=CreateQueryDesc((Query*)linitial(portal->parseTrees), |
382 | 382 | (Plan*)linitial(portal->planTrees), |
@@ -757,8 +757,8 @@ PortalRunSelect(Portal portal, |
757 | 757 |
|
758 | 758 | /* |
759 | 759 | * 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 | + *tochange as long as we do it on every fetch. (The Executor must not |
762 | 762 | * assume that dest never changes.) |
763 | 763 | */ |
764 | 764 | if (queryDesc) |
|