Commit 97edeec6 authored by Tom Lane's avatar Tom Lane

Correct misspellings of REFERENCES.

parent 45fe4042
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Copyright 2003, PostgreSQL Global Development Group * Copyright 2003, PostgreSQL Global Development Group
* *
* $Id: information_schema.sql,v 1.15 2003/10/18 19:06:10 tgl Exp $ * $Id: information_schema.sql,v 1.16 2003/11/08 20:43:52 tgl Exp $
*/ */
/* /*
...@@ -382,7 +382,7 @@ CREATE VIEW columns AS ...@@ -382,7 +382,7 @@ CREATE VIEW columns AS
OR has_table_privilege(c.oid, 'SELECT') OR has_table_privilege(c.oid, 'SELECT')
OR has_table_privilege(c.oid, 'INSERT') OR has_table_privilege(c.oid, 'INSERT')
OR has_table_privilege(c.oid, 'UPDATE') OR has_table_privilege(c.oid, 'UPDATE')
OR has_table_privilege(c.oid, 'RERERENCES') ); OR has_table_privilege(c.oid, 'REFERENCES') );
GRANT SELECT ON columns TO PUBLIC; GRANT SELECT ON columns TO PUBLIC;
...@@ -1370,7 +1370,7 @@ CREATE VIEW tables AS ...@@ -1370,7 +1370,7 @@ CREATE VIEW tables AS
OR has_table_privilege(c.oid, 'UPDATE') OR has_table_privilege(c.oid, 'UPDATE')
OR has_table_privilege(c.oid, 'DELETE') OR has_table_privilege(c.oid, 'DELETE')
OR has_table_privilege(c.oid, 'RULE') OR has_table_privilege(c.oid, 'RULE')
OR has_table_privilege(c.oid, 'RERERENCES') OR has_table_privilege(c.oid, 'REFERENCES')
OR has_table_privilege(c.oid, 'TRIGGER') ); OR has_table_privilege(c.oid, 'TRIGGER') );
GRANT SELECT ON tables TO PUBLIC; GRANT SELECT ON tables TO PUBLIC;
...@@ -1574,7 +1574,7 @@ CREATE VIEW views AS ...@@ -1574,7 +1574,7 @@ CREATE VIEW views AS
OR has_table_privilege(c.oid, 'UPDATE') OR has_table_privilege(c.oid, 'UPDATE')
OR has_table_privilege(c.oid, 'DELETE') OR has_table_privilege(c.oid, 'DELETE')
OR has_table_privilege(c.oid, 'RULE') OR has_table_privilege(c.oid, 'RULE')
OR has_table_privilege(c.oid, 'RERERENCES') OR has_table_privilege(c.oid, 'REFERENCES')
OR has_table_privilege(c.oid, 'TRIGGER') ); OR has_table_privilege(c.oid, 'TRIGGER') );
GRANT SELECT ON views TO PUBLIC; GRANT SELECT ON views TO PUBLIC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment