(catalog, schema, table, column string)
| 28 | } |
| 29 | |
| 30 | func FullColumnName(catalog, schema, table, column string) string { |
| 31 | return FullTableName(catalog, schema, table) + `."` + column + `"` |
| 32 | } |
| 33 | |
| 34 | // EncodeIndexName uses a simple encoding scheme (table$$index) for better visibility which is useful for debugging. |
| 35 | func EncodeIndexName(table, index string) string { |
no test coverage detected