(schema string)
| 1193 | } |
| 1194 | |
| 1195 | func (c *Completer) listTables(schema string) []string { |
| 1196 | if !c.ensureMetadata(schema) { |
| 1197 | return nil |
| 1198 | } |
| 1199 | schemaMeta := c.metadataCache[schema].GetSchemaMetadata("") |
| 1200 | if schemaMeta == nil { |
| 1201 | return nil |
| 1202 | } |
| 1203 | return schemaMeta.ListTableNames() |
| 1204 | } |
| 1205 | |
| 1206 | func (c *Completer) listViews(schema string) []string { |
| 1207 | if !c.ensureMetadata(schema) { |
no test coverage detected