From f4678c205ab1394a5f0e4fe219027b26a507d941 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 14 Jul 2011 19:18:17 +0300 Subject: [PATCH] Set information_schema.routines.is_udt_dependent to NO It previously said YES, but that is incorrect. --- doc/src/sgml/information_schema.sgml | 5 ++++- src/backend/catalog/information_schema.sql | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 063d8fabbb..6ed77f4a29 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -4313,7 +4313,10 @@ ORDER BY c.ordinal_position; is_udt_dependent yes_or_no - Applies to a feature not available in PostgreSQL + + Currently always NO. The alternative + YES applies to a feature not available in + PostgreSQL. diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql index 553d0d582d..8cf00acaa8 100644 --- a/src/backend/catalog/information_schema.sql +++ b/src/backend/catalog/information_schema.sql @@ -1410,7 +1410,7 @@ CREATE VIEW routines AS CAST(null AS time_stamp) AS created, CAST(null AS time_stamp) AS last_altered, CAST(null AS yes_or_no) AS new_savepoint_level, - CAST('YES' AS yes_or_no) AS is_udt_dependent, -- FIXME? + CAST('NO' AS yes_or_no) AS is_udt_dependent, CAST(null AS character_data) AS result_cast_from_data_type, CAST(null AS yes_or_no) AS result_cast_as_locator, -- 2.40.0