mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Remove unused fields from ReindexStmt.
fe263d1
changed the REINDEX logic so that those fields are not used at all,
but forgot to remove them.
Sawada Masahiko
This commit is contained in:
@ -3754,8 +3754,6 @@ _copyReindexStmt(const ReindexStmt *from)
|
||||
COPY_SCALAR_FIELD(kind);
|
||||
COPY_NODE_FIELD(relation);
|
||||
COPY_STRING_FIELD(name);
|
||||
COPY_SCALAR_FIELD(do_system);
|
||||
COPY_SCALAR_FIELD(do_user);
|
||||
|
||||
return newnode;
|
||||
}
|
||||
|
@ -1901,8 +1901,6 @@ _equalReindexStmt(const ReindexStmt *a, const ReindexStmt *b)
|
||||
COMPARE_SCALAR_FIELD(kind);
|
||||
COMPARE_NODE_FIELD(relation);
|
||||
COMPARE_STRING_FIELD(name);
|
||||
COMPARE_SCALAR_FIELD(do_system);
|
||||
COMPARE_SCALAR_FIELD(do_user);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user