Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f4678c2

Browse files
committed
Set information_schema.routines.is_udt_dependent to NO
It previously said YES, but that is incorrect.
1 parent a99d45b commit f4678c2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

doc/src/sgml/information_schema.sgml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4313,7 +4313,10 @@ ORDER BY c.ordinal_position;
43134313
<row>
43144314
<entry><literal>is_udt_dependent</literal></entry>
43154315
<entry><type>yes_or_no</type></entry>
4316-
<entry>Applies to a feature not available in <productname>PostgreSQL</></entry>
4316+
<entry>
4317+
Currently always <literal>NO</literal>. The alternative
4318+
<literal>YES</literal> applies to a feature not available in
4319+
<productname>PostgreSQL</></entry>.
43174320
</row>
43184321

43194322
<row>

src/backend/catalog/information_schema.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,7 @@ CREATE VIEW routines AS
14101410
CAST(null AS time_stamp) AS created,
14111411
CAST(null AS time_stamp) AS last_altered,
14121412
CAST(null AS yes_or_no) AS new_savepoint_level,
1413-
CAST('YES' AS yes_or_no) AS is_udt_dependent, -- FIXME?
1413+
CAST('NO' AS yes_or_no) AS is_udt_dependent,
14141414

14151415
CAST(null AS character_data) AS result_cast_from_data_type,
14161416
CAST(null AS yes_or_no) AS result_cast_as_locator,

0 commit comments

Comments
 (0)