(schemaName, tableName string)
| 114 | type TableSchemaCache map[string]*TableSchema |
| 115 | |
| 116 | func fullTableName(schemaName, tableName string) string { |
| 117 | return fmt.Sprintf("%s.%s", schemaName, tableName) |
| 118 | } |
| 119 | |
| 120 | func QuotedTableName(table *TableSchema) string { |
| 121 | return QuotedTableNameFromString(table.Schema, table.Name) |