diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-02-06 22:43:21 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-02-07 10:08:02 -0500 |
commit | 32ff2691173559e5f0ca3ea9cd5db134af6ee37d (patch) | |
tree | 726e285a5e8be2e6d634d1ee37ccbf55cae2e7a4 /doc/src | |
parent | b98a7cd58f6189833e6ad6ac7e7ad5b6412409fd (diff) |
Add more information_schema columns
- table_constraints.enforced
- triggers.action_order
- triggers.action_reference_old_table
- triggers.action_reference_new_table
Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/information_schema.sgml | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 0faa72f1d3f..09ef2827f2a 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -5317,6 +5317,13 @@ ORDER BY c.ordinal_position; <entry><type>yes_or_no</type></entry> <entry><literal>YES</literal> if the constraint is deferrable and initially deferred, <literal>NO</literal> if not</entry> </row> + <row> + <entry><literal>enforced</literal></entry> + <entry><type>yes_or_no</type></entry> + <entry>Applies to a feature not available in + <productname>PostgreSQL</productname> (currently always + <literal>YES</literal>)</entry> + </row> </tbody> </tgroup> </table> @@ -5761,7 +5768,14 @@ ORDER BY c.ordinal_position; <row> <entry><literal>action_order</literal></entry> <entry><type>cardinal_number</type></entry> - <entry>Not yet implemented</entry> + <entry> + Firing order among triggers on the same table having the same + <literal>event_manipulation</literal>, + <literal>action_timing</literal>, and + <literal>action_orientation</literal>. In + <productname>PostgreSQL</productname>, triggers are fired in name + order, so this column reflects that. + </entry> </row> <row> @@ -5806,13 +5820,13 @@ ORDER BY c.ordinal_position; <row> <entry><literal>action_reference_old_table</literal></entry> <entry><type>sql_identifier</type></entry> - <entry>Applies to a feature not available in <productname>PostgreSQL</productname></entry> + <entry>Name of the <quote>old</quote> transition table, or null if none</entry> </row> <row> <entry><literal>action_reference_new_table</literal></entry> <entry><type>sql_identifier</type></entry> - <entry>Applies to a feature not available in <productname>PostgreSQL</productname></entry> + <entry>Name of the <quote>new</quote> transition table, or null if none</entry> </row> <row> |