* errtableconstraint --- stores schema_name, table_name and constraint_name * of a table-related constraint within the current errordata. */
| 6057 | * of a table-related constraint within the current errordata. |
| 6058 | */ |
| 6059 | int |
| 6060 | errtableconstraint(Relation rel, const char *conname) |
| 6061 | { |
| 6062 | errtable(rel); |
| 6063 | err_generic_string(PG_DIAG_CONSTRAINT_NAME, conname); |
| 6064 | |
| 6065 | return 0; /* return value does not matter */ |
| 6066 | } |
| 6067 | |
| 6068 | |
| 6069 | /* |
no test coverage detected