()
| 219 | } |
| 220 | |
| 221 | func (m CompletionMap) insertFunctions() { |
| 222 | for _, name := range getMySQLBuiltinFunctions() { |
| 223 | m.Insert(base.Candidate{ |
| 224 | Type: base.CandidateTypeFunction, |
| 225 | Text: name + "()", |
| 226 | }) |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | func (m CompletionMap) insertDatabases(c *Completer) { |
| 231 | for _, database := range c.listAllDatabases() { |
no test coverage detected