SuRaMoN

Results 6 comments of SuRaMoN

When using the mysql client, the output looks like this: ![image](https://user-images.githubusercontent.com/852196/130217466-f199d3fb-ac5d-4116-812f-e702b5f0fca6.png) For large results this is quite unpleasant to work with. When configuring visidata as mysql pager the result of...

rebased to latest develop branch

i also dont like the copy past between the tsv and mysqlclient. i moved it to the tsv loader now as you asked and i added the extra options. the...

its possible, but it will probably be more of a hassle. - os.read returns bytes, so will have to be converted with iterdecode - os.read completely ignores all magic done...

Its as a expected: ``` import gzip o = open("t.tsv.gz", "rb") g = gzip.open(o) print(o.fileno(), g.fileno()) ``` gives: ``` 3 3 ``` So i cant use os.read for compressed files....

I fixed tests and added documentation For performance tests, i did this, does it suffice, or do you want something integrated in the automated tests? ``` $ git checkout tsv...