* errtable --- stores schema_name and table_name of a table * within the current errordata. */
| 6003 | * within the current errordata. |
| 6004 | */ |
| 6005 | int |
| 6006 | errtable(Relation rel) |
| 6007 | { |
| 6008 | err_generic_string(PG_DIAG_SCHEMA_NAME, |
| 6009 | get_namespace_name(RelationGetNamespace(rel))); |
| 6010 | err_generic_string(PG_DIAG_TABLE_NAME, RelationGetRelationName(rel)); |
| 6011 | |
| 6012 | return 0; /* return value does not matter */ |
| 6013 | } |
| 6014 | |
| 6015 | /* |
| 6016 | * errtablecol --- stores schema_name, table_name and column_name |
no test coverage detected