mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix Query Tool error messages for psycopg3 driver.
This commit is contained in:
parent
9abbd30790
commit
b640df5bdd
@ -782,7 +782,7 @@ export function ResultSet() {
|
|||||||
setSelectedRows(new Set());
|
setSelectedRows(new Set());
|
||||||
setSelectedColumns(new Set());
|
setSelectedColumns(new Set());
|
||||||
setLoaderText(gettext('Waiting for the query to complete...'));
|
setLoaderText(gettext('Waiting for the query to complete...'));
|
||||||
await rsu.current.startExecution(
|
return await rsu.current.startExecution(
|
||||||
query, explainObject,
|
query, explainObject,
|
||||||
()=>{
|
()=>{
|
||||||
setColumns([]);
|
setColumns([]);
|
||||||
@ -829,8 +829,8 @@ export function ResultSet() {
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
await yesCallback();
|
let goForPoll = await yesCallback();
|
||||||
pollCallback();
|
if (goForPoll) pollCallback();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1635,7 +1635,7 @@ Failed to reset the connection to the server due to following error:
|
|||||||
# Do not append if error starts with `ERROR:` as most pg related
|
# Do not append if error starts with `ERROR:` as most pg related
|
||||||
# error starts with `ERROR:`
|
# error starts with `ERROR:`
|
||||||
if not errmsg.startswith('ERROR:'):
|
if not errmsg.startswith('ERROR:'):
|
||||||
errmsg = gettext('ERROR: ') + errmsg + '\n\n'
|
errmsg = gettext('ERROR: ') + errmsg + ' \n\n'
|
||||||
|
|
||||||
if exception_obj.diag.severity is not None \
|
if exception_obj.diag.severity is not None \
|
||||||
and exception_obj.diag.message_primary is not None:
|
and exception_obj.diag.message_primary is not None:
|
||||||
|
Loading…
Reference in New Issue
Block a user