Commit d419e11c authored by Bruce Momjian's avatar Bruce Momjian

Change %ud to %u

Darren King.
parent 06815136
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteSupport.c,v 1.4 1996/11/24 05:46:12 bryanh Exp $ * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteSupport.c,v 1.5 1996/12/26 17:49:56 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -56,7 +56,7 @@ RuleIdGetActionInfo(Oid ruleoid, bool *instead_flag, Query **parseTrees) ...@@ -56,7 +56,7 @@ RuleIdGetActionInfo(Oid ruleoid, bool *instead_flag, Query **parseTrees)
ObjectIdGetDatum(ruleoid), ObjectIdGetDatum(ruleoid),
0,0,0); 0,0,0);
if (ruletuple == NULL) if (ruletuple == NULL)
elog(WARN, "rule %ud isn't in rewrite system relation", ruleoid); elog(WARN, "rule %u isn't in rewrite system relation", ruleoid);
ruleaction = heap_getattr(ruletuple, ruleaction = heap_getattr(ruletuple,
InvalidBuffer, InvalidBuffer,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment