From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- .../html/infoschema-triggered-update-columns.html | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 doc/src/sgml/html/infoschema-triggered-update-columns.html (limited to 'doc/src/sgml/html/infoschema-triggered-update-columns.html') diff --git a/doc/src/sgml/html/infoschema-triggered-update-columns.html b/doc/src/sgml/html/infoschema-triggered-update-columns.html new file mode 100644 index 0000000..3a510d8 --- /dev/null +++ b/doc/src/sgml/html/infoschema-triggered-update-columns.html @@ -0,0 +1,51 @@ + +37.56. triggered_update_columns

37.56. triggered_update_columns

+ For triggers in the current database that specify a column list + (like UPDATE OF column1, column2), the + view triggered_update_columns identifies these + columns. Triggers that do not specify a column list are not + included in this view. Only those columns are shown that the + current user owns or has some privilege other than + SELECT on. +

Table 37.54. triggered_update_columns Columns

+ Column Type +

+

+ Description +

+ trigger_catalog sql_identifier +

+

+ Name of the database that contains the trigger (always the current database) +

+ trigger_schema sql_identifier +

+

+ Name of the schema that contains the trigger +

+ trigger_name sql_identifier +

+

+ Name of the trigger +

+ event_object_catalog sql_identifier +

+

+ Name of the database that contains the table that the trigger + is defined on (always the current database) +

+ event_object_schema sql_identifier +

+

+ Name of the schema that contains the table that the trigger is defined on +

+ event_object_table sql_identifier +

+

+ Name of the table that the trigger is defined on +

+ event_object_column sql_identifier +

+

+ Name of the column that the trigger is defined on +


\ No newline at end of file -- cgit v1.2.3