diff options
author | Kevin Grittner <kgrittn@postgresql.org> | 2013-03-22 13:27:34 -0500 |
---|---|---|
committer | Kevin Grittner <kgrittn@postgresql.org> | 2013-03-22 13:27:34 -0500 |
commit | 549dae0352a06a43ec664dc158556e12ec2d30e5 (patch) | |
tree | 603071d01487f6b6a8185b5475e63cf3e82b9981 /src/include/parser/parse_clause.h | |
parent | 4912385b56afe68ef76e47d38df1d61ada0fde2f (diff) | |
download | postgresql-549dae0352a06a43ec664dc158556e12ec2d30e5.tar.gz postgresql-549dae0352a06a43ec664dc158556e12ec2d30e5.zip |
Fix problems with incomplete attempt to prohibit OIDS with MVs.
Problem with assertion failure in restoring from pg_dump output
reported by Joachim Wieland.
Review and suggestions by Tom Lane and Robert Haas.
Diffstat (limited to 'src/include/parser/parse_clause.h')
-rw-r--r-- | src/include/parser/parse_clause.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/parser/parse_clause.h b/src/include/parser/parse_clause.h index 36318d125dd..0bccb1cd648 100644 --- a/src/include/parser/parse_clause.h +++ b/src/include/parser/parse_clause.h @@ -20,7 +20,7 @@ extern void transformFromClause(ParseState *pstate, List *frmList); extern int setTargetTable(ParseState *pstate, RangeVar *relation, bool inh, bool alsoSource, AclMode requiredPerms); extern bool interpretInhOption(InhOption inhOpt); -extern bool interpretOidsOption(List *defList); +extern bool interpretOidsOption(List *defList, char relkind); extern Node *transformWhereClause(ParseState *pstate, Node *clause, ParseExprKind exprKind, const char *constructName); |