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

Commit 97edeec

Browse files
committed
Correct misspellings of REFERENCES.
1 parent 45fe404 commit 97edeec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/catalog/information_schema.sql

Lines changed: 4 additions & 4 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.15 2003/10/18 19:06:10 tgl Exp $
7+
* $Id: information_schema.sql,v 1.16 2003/11/08 20:43:52 tgl Exp $
88
*/
99

1010
/*
@@ -382,7 +382,7 @@ CREATE VIEW columns AS
382382
OR has_table_privilege(c.oid, 'SELECT')
383383
OR has_table_privilege(c.oid, 'INSERT')
384384
OR has_table_privilege(c.oid, 'UPDATE')
385-
OR has_table_privilege(c.oid, 'RERERENCES') );
385+
OR has_table_privilege(c.oid, 'REFERENCES') );
386386

387387
GRANT SELECT ON columns TO PUBLIC;
388388

@@ -1370,7 +1370,7 @@ CREATE VIEW tables AS
13701370
OR has_table_privilege(c.oid, 'UPDATE')
13711371
OR has_table_privilege(c.oid, 'DELETE')
13721372
OR has_table_privilege(c.oid, 'RULE')
1373-
OR has_table_privilege(c.oid, 'RERERENCES')
1373+
OR has_table_privilege(c.oid, 'REFERENCES')
13741374
OR has_table_privilege(c.oid, 'TRIGGER') );
13751375

13761376
GRANT SELECT ON tables TO PUBLIC;
@@ -1574,7 +1574,7 @@ CREATE VIEW views AS
15741574
OR has_table_privilege(c.oid, 'UPDATE')
15751575
OR has_table_privilege(c.oid, 'DELETE')
15761576
OR has_table_privilege(c.oid, 'RULE')
1577-
OR has_table_privilege(c.oid, 'RERERENCES')
1577+
OR has_table_privilege(c.oid, 'REFERENCES')
15781578
OR has_table_privilege(c.oid, 'TRIGGER') );
15791579

15801580
GRANT SELECT ON views TO PUBLIC;

0 commit comments

Comments
 (0)