Set information_schema.routines.is_udt_dependent to NO
authorPeter Eisentraut
Thu, 14 Jul 2011 16:18:17 +0000 (19:18 +0300)
committerPeter Eisentraut
Thu, 14 Jul 2011 16:18:17 +0000 (19:18 +0300)
It previously said YES, but that is incorrect.

doc/src/sgml/information_schema.sgml
src/backend/catalog/information_schema.sql

index 063d8fabbb458b13d07c42e223b14a52df8521b2..6ed77f4a29aa6794c8ef00715a8010fea6844317 100644 (file)
@@ -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.
      
 
      
index 553d0d582da0bc3093d1d6ed92de5921cb37a087..8cf00acaa81b49c1c96f76948eb5fff35bb4ca7c 100644 (file)
@@ -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,