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
Currently YDB CLI reprints a prompt on completion like psql, ClickHouse CLI, what makes queries writing not so pleasant.
This is because it uses Replxx -- a C++ replacement for the GNU Readline.
An example from psql:
Fixing this is not so easy and requires patching a tricky code of Replxx, but is possible, as, for example, Python 3.13 REPL and ZSH do not reprint a prompt.
Currently
YDB CLI
reprints a prompt on completion likepsql
,ClickHouse CLI
, what makes queries writing not so pleasant.This is because it uses
Replxx
-- aC++
replacement for theGNU Readline
.An example from

psql
:Fixing this is not so easy and requires patching a tricky code of
Replxx
, but is possible, as, for example,Python 3.13 REPL
andZSH
do not reprint a prompt.Relations:
The text was updated successfully, but these errors were encountered: