diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-08 20:43:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-08 20:43:57 +0000 |
commit | c3bc15f422f9bf50a35852f716f1a99bd279a445 (patch) | |
tree | 47e70674b81ba76e72708f9c4dfd9deb07e9c94f | |
parent | 939c203974dbe5e882f9895ceae5931bf15a72c6 (diff) | |
download | postgresql-c3bc15f422f9bf50a35852f716f1a99bd279a445.tar.gz postgresql-c3bc15f422f9bf50a35852f716f1a99bd279a445.zip |
Correct misspellings of REFERENCES.
-rw-r--r-- | src/backend/catalog/information_schema.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/catalog/information_schema.sql b/src/backend/catalog/information_schema.sql index 3bf56f14dbd..96e5e554d98 100644 --- a/src/backend/catalog/information_schema.sql +++ b/src/backend/catalog/information_schema.sql @@ -4,7 +4,7 @@ * * 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.15.2.1 2003/11/08 20:43:57 tgl Exp $ */ /* @@ -382,7 +382,7 @@ CREATE VIEW columns AS OR has_table_privilege(c.oid, 'SELECT') OR has_table_privilege(c.oid, 'INSERT') 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; @@ -1370,7 +1370,7 @@ CREATE VIEW tables AS OR has_table_privilege(c.oid, 'UPDATE') OR has_table_privilege(c.oid, 'DELETE') 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') ); GRANT SELECT ON tables TO PUBLIC; @@ -1574,7 +1574,7 @@ CREATE VIEW views AS OR has_table_privilege(c.oid, 'UPDATE') OR has_table_privilege(c.oid, 'DELETE') 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') ); GRANT SELECT ON views TO PUBLIC; |