1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Set information_schema.routines.is_udt_dependent to NO

It previously said YES, but that is incorrect.
This commit is contained in:
Peter Eisentraut
2011-07-14 19:18:17 +03:00
parent a99d45b805
commit f4678c205a
2 changed files with 5 additions and 2 deletions

View 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,