elein <[EMAIL PROTECTED]> writes: > Also, what are the reasons for forbidding triggers on views?
The fact that they'd never fire (or better never fire). A view does not actually store any tuples, so update and delete triggers on it are certainly useless. You could imagine allowing BEFORE INSERT triggers, with the understanding that nothing will be inserted no matter what the trigger returns ... but such a trigger is still useless unless we remove the safety restriction that says you can't INSERT into a view without having an ON INSERT DO INSTEAD rule. What you are probably wishing you had is some sort of ability to trigger on "virtual", pre-rewriter operations, but the executor and the trigger mechanism know nothing of this. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings