Enable bracketed-paste in certain case only.

Only enable bracketed-paste when multiquery is on and multiline is off.
This commit is contained in:
Amos Bird 2019-11-14 08:41:55 +08:00
parent b26ac93731
commit 646c5f124c
No known key found for this signature in database
GPG Key ID: 80D430DCBECFEDB4

View File

@ -497,6 +497,11 @@ private:
throw Exception("Cannot initialize readline", ErrorCodes::CANNOT_READLINE);
#if RL_VERSION_MAJOR >= 7
/// Enable bracketed-paste-mode only when multiquery is enabled and multiline is
/// disabled, so that we are able to paste and execute multiline queries in a whole
/// instead of erroring out, while be less intrusive.
if (config().has("multiquery") && !config().has("multiline"))
{
/// When bracketed paste mode is set, pasted text is bracketed with control sequences so
/// that the program can differentiate pasted text from typed-in text. This helps
/// clickhouse-client so that without -m flag, one can still paste multiline queries, and
@ -506,6 +511,7 @@ private:
/// Use our bracketed paste handler to get better user experience. See comments above.
rl_bind_keyseq(BRACK_PASTE_PREF, clickhouse_rl_bracketed_paste_begin);
}
#endif
auto clear_prompt_or_exit = [](int)