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