Ensure all messages are retained in the Query Tool from long running queries. Fixes #4730

This commit is contained in:
Aditya Toshniwal
2019-10-25 12:38:46 +01:00
committed by Dave Page
parent 6d7ff9444a
commit 1f6a0a87f6
3 changed files with 4 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ export function callRenderAfterPoll(sqlEditor, alertify, res) {
res.result += '\n\n' + msg;
else
res.result = msg;
sqlEditor.update_msg_history(true, res.result, true);
sqlEditor.update_msg_history(true, res.result, false);
sqlEditor.reset_data_store();
if (isNotificationEnabled(sqlEditor)) {
alertify.success(msg, sqlEditor.info_notifier_timeout);