We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ec3923 commit de0197dCopy full SHA for de0197d
src/relation_info.c
@@ -809,9 +809,10 @@ fill_prel_with_partitions(PartRelationInfo *prel,
809
if (!OidIsValid(prel->children[i]))
810
{
811
DisablePathman(); /* disable pg_pathman since config is broken */
812
- elog(ERROR, "pg_pathman's cache for relation \"%s\" "
813
- "has not been properly initialized",
814
- get_rel_name_or_relid(PrelParentRelid(prel)));
+ ereport(ERROR, (errmsg("pg_pathman's cache for relation \"%s\" "
+ "has not been properly initialized",
+ get_rel_name_or_relid(PrelParentRelid(prel))),
815
+ errhint(INIT_ERROR_HINT)));
816
}
817
818
0 commit comments