We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da87690 commit d95e77eCopy full SHA for d95e77e
src/ddl.c
@@ -1144,7 +1144,18 @@ MtmExecutorStart(QueryDesc *queryDesc, int eflags)
1144
if (!MtmIsLogicalReceiver && !MtmDDLStatement && MtmIsEnabled())
1145
{
1146
if (!MtmRemoteFunctionsValid)
1147
- MtmInitializeRemoteFunctionsMap();
+ {
1148
+ PG_TRY();
1149
1150
+ MtmInitializeRemoteFunctionsMap();
1151
+ }
1152
+ PG_CATCH();
1153
1154
+ errcontext("DETAIL: During parsing of remote functions string: '%s'", MtmRemoteFunctionsList);
1155
+ PG_RE_THROW();
1156
1157
+ PG_END_TRY();
1158
1159
1160
Assert(queryDesc->planstate);
1161
0 commit comments