diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-02 12:24:39 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2024-10-02 12:24:39 +0200 |
commit | 94902b146fae024c03f80d496a0da5ba9751c9b5 (patch) | |
tree | 0234966dcad232b14e4fc833bb92a574f0cd203c /doc/src | |
parent | 17cc5f666f6aada21eb3237974c50681ba4814ea (diff) | |
download | postgresql-94902b146fae024c03f80d496a0da5ba9751c9b5.tar.gz postgresql-94902b146fae024c03f80d496a0da5ba9751c9b5.zip |
doc: Add link to login event trigger example
The login event trigger is not listed on the trigger firing matrix
since it's not fired by a command. Add a link to the example code
page similar to how the other event triggers link to the matrix.
Reported-by: Marcos Pegoraro <marcos@f10.com.br>
Discussion: https://postgr.es/m/CAB-JLwYS+78rX02BZ3wJ9ykVrd2i3O1K+7jzvZKQ0evquyQiLQ@mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/event-trigger.sgml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/src/sgml/event-trigger.sgml b/doc/src/sgml/event-trigger.sgml index 8e009cca050..d0306390346 100644 --- a/doc/src/sgml/event-trigger.sgml +++ b/doc/src/sgml/event-trigger.sgml @@ -55,6 +55,11 @@ </para> <para> + For an example on how to use the <literal>login</literal> event trigger, + see <xref linkend="event-trigger-database-login-example"/>. + </para> + + <para> The <literal>ddl_command_start</literal> event occurs just before the execution of a <literal>CREATE</literal>, <literal>ALTER</literal>, <literal>DROP</literal>, <literal>SECURITY LABEL</literal>, |