(c *Completer, schemas map[string]bool)
| 233 | } |
| 234 | |
| 235 | func (m CompletionMap) insertSequences(c *Completer, schemas map[string]bool) { |
| 236 | for schema := range schemas { |
| 237 | for _, seq := range c.listSequences(schema) { |
| 238 | m.Insert(base.Candidate{ |
| 239 | Type: base.CandidateTypeSequence, |
| 240 | Text: c.quotedIdentifierIfNeeded(seq), |
| 241 | }) |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | func (m CompletionMap) insertTables(c *Completer, schemas map[string]bool) { |
| 247 | for schema := range schemas { |
no test coverage detected