(schema string)
| 1204 | } |
| 1205 | |
| 1206 | func (c *Completer) listViews(schema string) []string { |
| 1207 | if !c.ensureMetadata(schema) { |
| 1208 | return nil |
| 1209 | } |
| 1210 | schemaMeta := c.metadataCache[schema].GetSchemaMetadata("") |
| 1211 | if schemaMeta == nil { |
| 1212 | return nil |
| 1213 | } |
| 1214 | return schemaMeta.ListViewNames() |
| 1215 | } |
| 1216 | |
| 1217 | func (c *Completer) listSequences(schema string) []string { |
| 1218 | if !c.ensureMetadata(schema) { |
no test coverage detected