Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
76cc2fe6
Commit
76cc2fe6
authored
Nov 30, 2008
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dblink and tablefunc to not return with the wrong CurrentMemoryContext.
Per buildfarm results.
parent
c1f30733
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
28 deletions
+37
-28
contrib/dblink/dblink.c
contrib/dblink/dblink.c
+28
-16
contrib/tablefunc/tablefunc.c
contrib/tablefunc/tablefunc.c
+9
-12
No files found.
contrib/dblink/dblink.c
View file @
76cc2fe6
...
...
@@ -8,7 +8,7 @@
* Darko Prenosil <Darko.Prenosil@finteh.hr>
* Shridhar Daithankar <shridhar_daithankar@persistent.co.in>
*
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.7
5 2008/09/22 13:55:13
tgl Exp $
* $PostgreSQL: pgsql/contrib/dblink/dblink.c,v 1.7
6 2008/11/30 23:23:52
tgl Exp $
* Copyright (c) 2001-2008, PostgreSQL Global Development Group
* ALL RIGHTS RESERVED;
*
...
...
@@ -213,7 +213,6 @@ dblink_connect(PG_FUNCTION_ARGS)
char
*
connstr
=
NULL
;
char
*
connname
=
NULL
;
char
*
msg
;
MemoryContext
oldcontext
;
PGconn
*
conn
=
NULL
;
remoteConn
*
rconn
=
NULL
;
...
...
@@ -227,17 +226,14 @@ dblink_connect(PG_FUNCTION_ARGS)
else
if
(
PG_NARGS
()
==
1
)
connstr
=
text_to_cstring
(
PG_GETARG_TEXT_PP
(
0
));
oldcontext
=
MemoryContextSwitchTo
(
TopMemoryContext
);
if
(
connname
)
rconn
=
(
remoteConn
*
)
palloc
(
sizeof
(
remoteConn
));
rconn
=
(
remoteConn
*
)
MemoryContextAlloc
(
TopMemoryContext
,
sizeof
(
remoteConn
));
/* check password in connection string if not superuser */
dblink_connstr_check
(
connstr
);
conn
=
PQconnectdb
(
connstr
);
MemoryContextSwitchTo
(
oldcontext
);
if
(
PQstatus
(
conn
)
==
CONNECTION_BAD
)
{
msg
=
pstrdup
(
PQerrorMessage
(
conn
));
...
...
@@ -562,10 +558,10 @@ dblink_fetch(PG_FUNCTION_ARGS)
funcctx
=
SRF_FIRSTCALL_INIT
();
/*
* switch to memory context appropriate for multiple function calls
* Try to execute the query. Note that since libpq uses malloc,
* the PGresult will be long-lived even though we are still in
* a short-lived memory context.
*/
oldcontext
=
MemoryContextSwitchTo
(
funcctx
->
multi_call_memory_ctx
);
res
=
PQexec
(
conn
,
buf
.
data
);
if
(
!
res
||
(
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
&&
...
...
@@ -607,9 +603,6 @@ dblink_fetch(PG_FUNCTION_ARGS)
break
;
}
/* make sure we have a persistent copy of the tupdesc */
tupdesc
=
CreateTupleDescCopy
(
tupdesc
);
/* check result and tuple descriptor have the same number of columns */
if
(
PQnfields
(
res
)
!=
tupdesc
->
natts
)
ereport
(
ERROR
,
...
...
@@ -617,14 +610,25 @@ dblink_fetch(PG_FUNCTION_ARGS)
errmsg
(
"remote query result rowtype does not match "
"the specified FROM clause rowtype"
)));
/* fast track when no results */
/*
* fast track when no results. We could exit earlier, but then
* we'd not report error if the result tuple type is wrong.
*/
if
(
funcctx
->
max_calls
<
1
)
{
if
(
res
)
PQclear
(
res
);
SRF_RETURN_DONE
(
funcctx
);
}
/*
* switch to memory context appropriate for multiple function calls,
* so we can make long-lived copy of tupdesc etc
*/
oldcontext
=
MemoryContextSwitchTo
(
funcctx
->
multi_call_memory_ctx
);
/* make sure we have a persistent copy of the tupdesc */
tupdesc
=
CreateTupleDescCopy
(
tupdesc
);
/* store needed metadata for subsequent calls */
attinmeta
=
TupleDescGetAttInMetadata
(
tupdesc
);
funcctx
->
attinmeta
=
attinmeta
;
...
...
@@ -815,8 +819,11 @@ dblink_record_internal(FunctionCallInfo fcinfo, bool is_async, bool do_get)
res
=
PQgetResult
(
conn
);
/* NULL means we're all done with the async results */
if
(
!
res
)
{
MemoryContextSwitchTo
(
oldcontext
);
SRF_RETURN_DONE
(
funcctx
);
}
}
if
(
!
res
||
(
PQresultStatus
(
res
)
!=
PGRES_COMMAND_OK
&&
...
...
@@ -825,6 +832,7 @@ dblink_record_internal(FunctionCallInfo fcinfo, bool is_async, bool do_get)
dblink_res_error
(
conname
,
res
,
"could not execute query"
,
fail
);
if
(
freeconn
)
PQfinish
(
conn
);
MemoryContextSwitchTo
(
oldcontext
);
SRF_RETURN_DONE
(
funcctx
);
}
...
...
@@ -894,6 +902,7 @@ dblink_record_internal(FunctionCallInfo fcinfo, bool is_async, bool do_get)
{
if
(
res
)
PQclear
(
res
);
MemoryContextSwitchTo
(
oldcontext
);
SRF_RETURN_DONE
(
funcctx
);
}
...
...
@@ -1261,8 +1270,11 @@ dblink_get_pkey(PG_FUNCTION_ARGS)
funcctx
->
user_fctx
=
results
;
}
else
{
/* fast track when no results */
MemoryContextSwitchTo
(
oldcontext
);
SRF_RETURN_DONE
(
funcctx
);
}
MemoryContextSwitchTo
(
oldcontext
);
}
...
...
contrib/tablefunc/tablefunc.c
View file @
76cc2fe6
/*
* $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.c,v 1.5
5 2008/10/29 00:00:38
tgl Exp $
* $PostgreSQL: pgsql/contrib/tablefunc/tablefunc.c,v 1.5
6 2008/11/30 23:23:52
tgl Exp $
*
*
* tablefunc
...
...
@@ -381,11 +381,6 @@ crosstab(PG_FUNCTION_ARGS)
/* create a function context for cross-call persistence */
funcctx
=
SRF_FIRSTCALL_INIT
();
/*
* switch to memory context appropriate for multiple function calls
*/
oldcontext
=
MemoryContextSwitchTo
(
funcctx
->
multi_call_memory_ctx
);
/* Connect to SPI manager */
if
((
ret
=
SPI_connect
())
<
0
)
/* internal error */
...
...
@@ -426,9 +421,6 @@ crosstab(PG_FUNCTION_ARGS)
SRF_RETURN_DONE
(
funcctx
);
}
/* SPI switches context on us, so reset it */
MemoryContextSwitchTo
(
funcctx
->
multi_call_memory_ctx
);
/* get a tuple descriptor for our result type */
switch
(
get_call_result_type
(
fcinfo
,
NULL
,
&
tupdesc
))
{
...
...
@@ -448,9 +440,6 @@ crosstab(PG_FUNCTION_ARGS)
break
;
}
/* make sure we have a persistent copy of the tupdesc */
tupdesc
=
CreateTupleDescCopy
(
tupdesc
);
/*
* Check that return tupdesc is compatible with the data we got from
* SPI, at least based on number and type of attributes
...
...
@@ -461,6 +450,14 @@ crosstab(PG_FUNCTION_ARGS)
errmsg
(
"return and sql tuple descriptions are "
\
"incompatible"
)));
/*
* switch to memory context appropriate for multiple function calls
*/
oldcontext
=
MemoryContextSwitchTo
(
funcctx
->
multi_call_memory_ctx
);
/* make sure we have a persistent copy of the tupdesc */
tupdesc
=
CreateTupleDescCopy
(
tupdesc
);
/*
* Generate attribute metadata needed later to produce tuples from raw
* C strings
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment