File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.40 1999/03/17 22:52:51 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.41 1999/03/23 05:40:59 momjian Exp $
11
11
*
12
12
* NOTES
13
13
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -190,8 +190,7 @@ PerformPortalFetch(char *name,
190
190
* execute the portal fetch operation
191
191
* ----------------
192
192
*/
193
- PortalExecutorHeapMemory = (MemoryContext )
194
- PortalGetHeapMemory (portal );
193
+ PortalExecutorHeapMemory = (MemoryContext ) PortalGetHeapMemory (portal );
195
194
196
195
ExecutorRun (queryDesc , PortalGetState (portal ), feature ,
197
196
(Node * )NULL , (Node * )& limcount );
Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.21 1999/02/13 23:18:47 momjian Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/tcop/pquery.c,v 1.22 1999/03/23 05:41:00 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -190,8 +190,7 @@ ProcessPortal(char *portalName,
190
190
* do what is possible across transaction boundries. -hirohama
191
191
* ----------------
192
192
*/
193
- portalContext = (MemoryContext )
194
- PortalGetHeapMemory (GetPortalByName (NULL ));
193
+ portalContext = (MemoryContext ) PortalGetHeapMemory (GetPortalByName (NULL ));
195
194
196
195
MemoryContextSwitchTo (portalContext );
197
196
You can’t perform that action at this time.
0 commit comments