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

Commit ae20518

Browse files
committed
It was comparing the wrong pair of columns, which triggered the previously
mentioned bug.
1 parent 823bd7d commit ae20518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/catalog/information_schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Copyright 2003, PostgreSQL Global Development Group
66
*
7-
* $Id: information_schema.sql,v 1.10 2003/06/28 20:50:08 petere Exp $
7+
* $Id: information_schema.sql,v 1.11 2003/06/29 10:18:26 petere Exp $
88
*/
99

1010
/*
@@ -1496,7 +1496,7 @@ CREATE VIEW element_types AS
14961496
AND at.typelem = bt.oid
14971497
AND nbt.oid = bt.typnamespace
14981498

1499-
AND (x.objschema, x.objname, x.objtype, x.objtypeid) IN
1499+
AND (n.nspname, x.objname, x.objtype, x.objtypeid) IN
15001500
( SELECT object_schema, object_name, object_type, dtd_identifier
15011501
FROM data_type_privileges );
15021502

0 commit comments

Comments
 (0)