8000
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 026fafd commit 90a8b1fCopy full SHA for 90a8b1f
src/interfaces/libpq/fe-connect.c
@@ -4061,6 +4061,16 @@ parseServiceFile(const char *serviceFile,
4061
}
4062
*val++ = '\0';
4063
4064
+ if (strcmp(key, "service") == 0)
4065
+ {
4066
+ printfPQExpBuffer(errorMessage,
4067
+ libpq_gettext("nested service specifications not supported in service file \"%s\", line %d\n"),
4068
+ serviceFile,
4069
+ linenr);
4070
+ fclose(f);
4071
+ return 3;
4072
+ }
4073
+
4074
/*
4075
* Set the parameter --- but don't override any previous
4076
* explicit setting.
0 commit comments