Hi,
This is additional information in respect to the following ticket:
https://sqlite.org/src/tktview/6c266900a22574d4d647
I can reproduce an odd behaviour when .mode columns breaks on a UTF-8
character. But I can only reproduce in tmux, not in bash.
To set it up.
create table Team (name TEXT);
insert into Team
values
("Team Clan BK"),
("Team Alingsås BC"),
("Team Pergamon");
Then do a select.
.headers on
.mode columns
select * from Team;
In BASH this seems to work like it should.
Result:
name
------------
Team Clan BK
Team Alings
Team Pergamo
But when executing the same query in tmux I get the following output.
Result with the last two rows showing the unexpected intendation, possible
depending on UTF-8 character break to keep column width.
name
------------
Team Clan BK
Team Alings
Team Pergamo
Here is an asciinema to show it off:
https://asciinema.org/a/47266
Additional information:
desktop:~$ tmux -V
tmux 2.2
desktop:~$ uname -a
Linux desktop 4.2.0-1-amd64 #1 SMP Debian 4.2.1-1 (2015-09-25) x86_64
GNU/Linux
Debian Sid
Best regards,
Mikael Roos
_______________________________________________
sqlite-users mailing list
[email protected]
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users