This commit is contained in:
Peter Eisentraut 2017-03-03 18:21:06 -05:00
parent 47b55d4174
commit 2357c12b49
1 changed files with 2 additions and 2 deletions

View File

@ -10555,10 +10555,10 @@ ATExecEnableDisableTrigger(Relation rel, char *trigname,
* We just pass this off to rewriteDefine.c.
*/
static void
ATExecEnableDisableRule(Relation rel, char *trigname,
ATExecEnableDisableRule(Relation rel, char *rulename,
char fires_when, LOCKMODE lockmode)
{
EnableDisableRule(rel, trigname, fires_when);
EnableDisableRule(rel, rulename, fires_when);
}
/*