Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit aea9b6e

Browse files
committed
Ooops, looks like I broke fastpath in last changes...
1 parent a3cd065 commit aea9b6e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/tcop/fastpath.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.39 2000/05/28 17:56:04 tgl Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.40 2000/05/30 07:09:23 tgl Exp $
1212
*
1313
* NOTES
1414
* This cruft is the server side of PQfn.
@@ -215,6 +215,8 @@ update_fp_info(Oid func_id, struct fp_info * fip)
215215
rettype = pp->prorettype;
216216
argtypes = pp->proargtypes;
217217

218+
fmgr_info(func_id, &fip->flinfo);
219+
218220
for (i = 0; i < fip->flinfo.fn_nargs; ++i)
219221
{
220222
if (OidIsValid(argtypes[i]))
@@ -251,8 +253,6 @@ update_fp_info(Oid func_id, struct fp_info * fip)
251253
fip->xid = GetCurrentTransactionId();
252254
fip->cid = GetCurrentCommandId();
253255

254-
fmgr_info(func_id, &fip->flinfo);
255-
256256
/*
257257
* This must be last!
258258
*/

0 commit comments

Comments
 (0)