George Frolov
George Frolov
@greenskeleton removing my.cnf was never a deliberate decision, it stopped working because of a bug. We just released version 1.24.1 to pypi that should have this functionality restored.
Hi, it depends on how thorough you want the support for these keywords to be. Adding keywords to the list in `SQLCompleter` suffices for them to be shown in the...
By the way, the support of newer keywords in `mycli` is generally somewhat patchy (e.g. here is an [old unmerged PR](https://github.com/dbcli/mycli/pull/767/files) that addressed the issue). Of course, we could just...
hi, sorry for the long reaction time. Are you sure you are running mycli as rhenderson? Have you tried adding read permissions for other users? ``` chmod 644 ~/.myclirc ```
Running mycli under root is problematic, because it leverages your python environment that is typically configured with environment variables. Why do you need root? If the reason is to connect...
That's a lot of valid points. Let's make the following changes: 1. options for the csv format. We already have csv and csv-tab, a better solution would be to have...
You can get pretty close to this workflow right now: 1. type `SELECT FROM ` -> scroll through the list of suggested tables with arrow keys, select with Enter ...
The idea is that the single point of interaction between mycli and the pager application should be piping text into its standard input. This way any application that reads stdin...
The problem with such projects is that they can quickly lead to the idea of emulating your typical GUI application, just drawn on terminal. That's very different from what mycli...
Yes, I have tested the SSH connection. I wonder how to add it to the test suite. Looking at the paramiko documentation, they have a server implementation, maybe we can...