(catalog, schema, table string)
| 20 | } |
| 21 | |
| 22 | func FullTableName(catalog, schema, table string) string { |
| 23 | return FullSchemaName(catalog, schema) + `."` + table + `"` |
| 24 | } |
| 25 | |
| 26 | func FullIndexName(catalog, schema, index string) string { |
| 27 | return FullTableName(catalog, schema, index) |
no test coverage detected