We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If ereport(ERROR, ) present before ereport((DEBUG3, ), then the second statement will not run.
For example: line 1411 of jq.c: ereport(ERROR, (errmsg("remote server returned an error"))); ereport(DEBUG3, (errmsg("%s", err_msg)));
When error occour, only the first message will print. But after change the position of the two statemment, all the msgs will print.
The text was updated successfully, but these errors were encountered:
This issue has been fixed on release https://github.com/pgspider/jdbc_fdw/releases/tag/v0.4.0. Could you try again to check with this source code?
Sorry, something went wrong.
No branches or pull requests
If ereport(ERROR, ) present before ereport((DEBUG3, ), then the second statement will not run.
For example:
line 1411 of jq.c:
ereport(ERROR, (errmsg("remote server returned an error")));
ereport(DEBUG3, (errmsg("%s", err_msg)));
When error occour, only the first message will print.
But after change the position of the two statemment, all the msgs will print.
The text was updated successfully, but these errors were encountered: