Changeset: ca392ca1e4e5 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/ca392ca1e4e5 Modified Files: clients/ChangeLog clients/mapiclient/mclient.1 Branch: client_interrupts Log Message:
Changelog and manual update. diffs (29 lines): diff --git a/clients/ChangeLog b/clients/ChangeLog --- a/clients/ChangeLog +++ b/clients/ChangeLog @@ -1,3 +1,12 @@ # ChangeLog file for clients # This file is updated with Maddlog +* Wed Jan 10 2024 Sjoerd Mullender <[email protected]> +- Implemented interrupt handling in mclient. When using mclient + interactively, an interrupt (usually control-C) stops whatever the + client is doing. When editing a line, the line is discarded; when + editing a second or later line of a query, the whole query is discarded; + when a query is being executed, the server is asked to stop the query + at its earliest convenience. Stopping a running query can only be + done with an up-to-date server. All of this does not work on Windows. + diff --git a/clients/mapiclient/mclient.1 b/clients/mapiclient/mclient.1 --- a/clients/mapiclient/mclient.1 +++ b/clients/mapiclient/mclient.1 @@ -107,6 +107,9 @@ To disable reading the file, set the variable .B DOTMONETDBFILE to the empty string in the environment. +.PP +When working interactively, an interrupt (usually control-C) will clear +any query being edited and will stop any running query. .SH OPTIONS .SS General Options _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
