You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2020. It is now read-only.
It would be best to combine stderr and stdout, so the output contains errors in place, where they happened instead of appending them at the end of the output.
If multiple queries are executed this will allow users more easily spot which statement caused error(s).
Steps to show how this can be helpfull
Configure connections
Select connection
Execute multiple SQL statements and one of them should display error. E.g.:
?column?
----------
a
?column?
----------
z
ERROR: column "non_existing_identifier_to_get_error" does not exist
LINE 1: select non_existing_identifier_to_get_error;
^
Suggested SQLTools output:
?column?
----------
a
ERROR: column "non_existing_identifier_to_get_error" does not exist
LINE 1: select non_existing_identifier_to_get_error;
^
?column?
----------
z
The difference is that error is displayed in more appropriate place (in order where it actually occurred).