diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-02-27 13:23:33 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-02-27 13:23:33 -0300 |
commit | b9b408c487244ef8e6d613d183c56eb2c62990b1 (patch) | |
tree | 670ad0ca3429b507878944127a9d76c940c21207 /doc/src | |
parent | c4b0edb07ed53063ea4c86cd7918ad6ea01d8979 (diff) | |
download | postgresql-b9b408c487244ef8e6d613d183c56eb2c62990b1.tar.gz postgresql-b9b408c487244ef8e6d613d183c56eb2c62990b1.zip |
Record parents of triggers
This let us get rid of a recently introduced ugly hack (commit
1fa846f1c9af).
Author: Álvaro Herrera
Reviewed-by: Amit Langote, Tom Lane
Discussion: https://postgr.es/m/20200217215641.GA29784@alvherre.pgsql
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index a10b66569b9..34bc0d05266 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -6952,6 +6952,17 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l </row> <row> + <entry><structfield>tgparentid</structfield></entry> + <entry><type>oid</type></entry> + <entry><literal><link linkend="catalog-pg-trigger"><structname>pg_trigger</structname></link>.oid</literal></entry> + <entry> + Parent trigger that this trigger is cloned from, zero if not a clone; + this happens when partitions are created or attached to a partitioned + table. + </entry> + </row> + + <row> <entry><structfield>tgname</structfield></entry> <entry><type>name</type></entry> <entry></entry> |