MCPcopy Create free account
hub / github.com/Shopify/ghostferry / QuotedTableName

Function QuotedTableName

table_schema_cache.go:120–122  ·  view source on GitHub ↗
(table *TableSchema)

Source from the content-addressed store, hash-verified

118}
119
120func QuotedTableName(table *TableSchema) string {
121 return QuotedTableNameFromString(table.Schema, table.Name)
122}
123
124func QuotedTableNameFromString(database, table string) string {
125 return fmt.Sprintf("`%s`.`%s`", database, table)

Callers 5

TestQuotedTableNameMethod · 0.92
BuildSelectMethod · 0.92
VerifyDuringCutoverMethod · 0.85
maxPaginationKeyFunction · 0.85
DefaultBuildSelectFunction · 0.85

Calls 1

Tested by 1

TestQuotedTableNameMethod · 0.74