mirror of
https://github.com/postgres/postgres.git
synced 2025-06-16 06:01:02 +03:00
STATEMENT triggers are not implemented - elog (WARN).
This commit is contained in:
@ -86,6 +86,9 @@ CreateTrigger(CreateTrigStmt * stmt)
|
||||
TRIGGER_SETT_BEFORE(tgtype);
|
||||
if (stmt->row)
|
||||
TRIGGER_SETT_ROW(tgtype);
|
||||
else
|
||||
elog (WARN, "CreateTrigger: STATEMENT triggers are unimplemented, yet");
|
||||
|
||||
for (i = 0; i < 3 && stmt->actions[i]; i++)
|
||||
{
|
||||
switch (stmt->actions[i])
|
||||
|
Reference in New Issue
Block a user