MCPcopy Index your code
hub / github.com/Shopify/ghostferry / AllTableNames

Method AllTableNames

table_schema_cache.go:325–331  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

323}
324
325func (c TableSchemaCache) AllTableNames() (tableNames []string) {
326 for tableName, _ := range c {
327 tableNames = append(tableNames, tableName)
328 }
329
330 return
331}
332
333func (c TableSchemaCache) Get(database, table string) *TableSchema {
334 return c[fullTableName(database, table)]

Calls

no outgoing calls