(entry base.Candidate)
| 215 | type CompletionMap map[string]base.Candidate |
| 216 | |
| 217 | func (m CompletionMap) Insert(entry base.Candidate) { |
| 218 | m[entry.String()] = entry |
| 219 | } |
| 220 | |
| 221 | func (m CompletionMap) insertFunctions() { |
| 222 | for _, name := range getMySQLBuiltinFunctions() { |
no test coverage detected