Fix incorrect format placeholder

This commit is contained in:
Peter Eisentraut 2023-02-10 12:00:51 +01:00
parent 9e8b694d81
commit f8ba1bf4e4
1 changed files with 1 additions and 1 deletions

View File

@ -3901,7 +3901,7 @@ getRTEPermissionInfo(List *rteperminfos, RangeTblEntry *rte)
if (rte->perminfoindex == 0 ||
rte->perminfoindex > list_length(rteperminfos))
elog(ERROR, "invalid perminfoindex %d in RTE with relid %u",
elog(ERROR, "invalid perminfoindex %u in RTE with relid %u",
rte->perminfoindex, rte->relid);
perminfo = list_nth_node(RTEPermissionInfo, rteperminfos,
rte->perminfoindex - 1);