(completer: SQLCompleter, executor: SQLExecute)
| 119 | |
| 120 | @refresher("schemata") |
| 121 | def refresh_schemata(completer: SQLCompleter, executor: SQLExecute) -> None: |
| 122 | # schemata - In MySQL Schema is the same as database. But for mycli |
| 123 | # schemata will be the name of the current database. |
| 124 | completer.extend_schemata(executor.dbname) |
| 125 | completer.set_dbname(executor.dbname) |
| 126 | |
| 127 | |
| 128 | @refresher("tables") |
nothing calls this directly
no test coverage detected