1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Remove unused tables pg_variable, pg_inheritproc, pg_ipl tables. Initdb

forced.
This commit is contained in:
Bruce Momjian
2001-05-14 20:30:21 +00:00
parent 248182560c
commit 1e7b79cebc
16 changed files with 17 additions and 293 deletions

View File

@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.225 2001/05/09 16:50:44 petere Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.226 2001/05/14 20:30:20 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@@ -5301,8 +5301,7 @@ relation_name: SpecialRuleRelation
| ColId
{
/* disallow refs to variable system tables */
if (strcmp(LogRelationName, $1) == 0
|| strcmp(VariableRelationName, $1) == 0)
if (strcmp(LogRelationName, $1) == 0)
elog(ERROR,"%s cannot be accessed by users",$1);
else
$$ = $1;