From 3c505ef5777351e051ff11e981ddbb3da6fb6448 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 30 Dec 2009 22:48:10 +0000 Subject: [PATCH] Fill in information schema column for trigger WHEN condition --- doc/src/sgml/information_schema.sgml | 8 ++++++-- src/backend/catalog/information_schema.sql | 9 +++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 7ad2cc8c5c..ad945c2ea9 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -1,4 +1,4 @@ - + The Information Schema @@ -4875,7 +4875,11 @@ ORDER BY c.ordinal_position; action_condition character_data - Applies to a feature not available in PostgreSQL + + WHEN condition of the trigger, null if none + (also null if the table is not owned by a currently enabled + role) + diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql index 78532f52bb..929535acc5 100644 --- a/src/backend/catalog/information_schema.sql +++ b/src/backend/catalog/information_schema.sql @@ -4,7 +4,7 @@ * * Copyright (c) 2003-2009, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/backend/catalog/information_schema.sql,v 1.60 2009/12/07 05:22:21 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/catalog/information_schema.sql,v 1.61 2009/12/30 22:48:10 petere Exp $ */ /* @@ -1909,7 +1909,12 @@ CREATE VIEW triggers AS CAST(n.nspname AS sql_identifier) AS event_object_schema, CAST(c.relname AS sql_identifier) AS event_object_table, CAST(null AS cardinal_number) AS action_order, - CAST(null AS character_data) AS action_condition, + -- XXX strange hacks follow + CAST( + CASE WHEN pg_has_role(c.relowner, 'USAGE') + THEN (SELECT m[1] FROM regexp_matches(pg_get_triggerdef(t.oid), E'.{35,} WHEN \\((.+)\\) EXECUTE PROCEDURE') AS rm(m) LIMIT 1) + ELSE null END + AS character_data) AS action_condition, CAST( substring(pg_get_triggerdef(t.oid) from position('EXECUTE PROCEDURE' in substring(pg_get_triggerdef(t.oid) from 48)) + 47) -- 2.40.0