()
| 273 | } |
| 274 | |
| 275 | func (m CompletionMap) insertFunctions() { |
| 276 | for _, name := range getBuiltinFunctions() { |
| 277 | m.Insert(base.Candidate{ |
| 278 | Type: base.CandidateTypeFunction, |
| 279 | Text: name + "()", |
| 280 | }) |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | func (m CompletionMap) insertSchemas(c *Completer) { |
| 285 | // Skip if user has specified the schema. |
no test coverage detected