Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f8ba1bf

Browse files
committed
Fix incorrect format placeholder
1 parent 9e8b694 commit f8ba1bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/parser/parse_relation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3901,7 +3901,7 @@ getRTEPermissionInfo(List *rteperminfos, RangeTblEntry *rte)
39013901

39023902
if (rte->perminfoindex == 0 ||
39033903
rte->perminfoindex > list_length(rteperminfos))
3904-
elog(ERROR, "invalid perminfoindex %d in RTE with relid %u",
3904+
elog(ERROR, "invalid perminfoindex %u in RTE with relid %u",
39053905
rte->perminfoindex, rte->relid);
39063906
perminfo = list_nth_node(RTEPermissionInfo, rteperminfos,
39073907
rte->perminfoindex - 1);

0 commit comments

Comments
 (0)