Fix syntax error: missing argument to elog(). Thanks Darren King.

This commit is contained in:
Bryan Henderson 1996-11-24 05:46:12 +00:00
parent 092c7a6be5
commit 9602150a04
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteSupport.c,v 1.3 1996/11/08 05:58:06 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/rewrite/rewriteSupport.c,v 1.4 1996/11/24 05:46:12 bryanh Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -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 %d isn't in rewrite system relation"); elog(WARN, "rule %ud isn't in rewrite system relation", ruleoid);
ruleaction = heap_getattr(ruletuple, ruleaction = heap_getattr(ruletuple,
InvalidBuffer, InvalidBuffer,