mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
Eliminate pg_rewrite.ev_attr column and related dead code.
Commit 95ef6a3448
removed the
ability to create rules on an individual column as of 7.3, but
left some residual code which has since been useless. This cleans
up that dead code without any change in behavior other than
dropping the useless column from the catalog.
This commit is contained in:
@@ -25,7 +25,6 @@ typedef struct RewriteRule
|
||||
{
|
||||
Oid ruleId;
|
||||
CmdType event;
|
||||
AttrNumber attrno;
|
||||
Node *qual;
|
||||
List *actions;
|
||||
char enabled;
|
||||
|
@@ -49,8 +49,6 @@ extern void IncrementVarSublevelsUp_rtable(List *rtable,
|
||||
|
||||
extern bool rangeTableEntry_used(Node *node, int rt_index,
|
||||
int sublevels_up);
|
||||
extern bool attribute_used(Node *node, int rt_index, int attno,
|
||||
int sublevels_up);
|
||||
|
||||
extern Query *getInsertSelectQuery(Query *parsetree, Query ***subquery_ptr);
|
||||
|
||||
|
Reference in New Issue
Block a user