Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.8.0
-
None
Description
On Sqlline:
> select id from customer . . . . . . . . . . . . . . . . . > limit 1; +---------------+ | id | +---------------+ | 1 | +---------------+ 1 row selected (0.095 seconds) [Up arrow] > limit 1;
Using the arrow keys, traversing through previously run queries is currently not useful, as it displays them line by line and not as a whole.
Compare it with Postgres:
=# select c_customer_sk from customer -# limit 1; c_customer_sk --------------- 1 (1 row) [Up arrow] =# select c_customer_sk from customer limit 1;
Or with shell prompt:
# for i in `seq 1 5` > do > mkdir $i > done [Up arrow] # for i in `seq 1 5` ; do mkdir $i; done
Sqlline should also support other such enhancements such as printing entire history.