mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Fix warning about unused variable
This commit is contained in:
parent
504f0c5d5d
commit
ae137bcaab
@ -102,7 +102,6 @@ DefineVirtualRelation(RangeVar *relation, List *tlist, bool replace,
|
||||
List *options)
|
||||
{
|
||||
Oid viewOid;
|
||||
Oid namespaceId;
|
||||
LOCKMODE lockmode;
|
||||
CreateStmt *createStmt = makeNode(CreateStmt);
|
||||
List *attrList;
|
||||
@ -167,8 +166,7 @@ DefineVirtualRelation(RangeVar *relation, List *tlist, bool replace,
|
||||
* namespace is temporary.
|
||||
*/
|
||||
lockmode = replace ? AccessExclusiveLock : NoLock;
|
||||
namespaceId =
|
||||
RangeVarGetAndCheckCreationNamespace(relation, lockmode, &viewOid);
|
||||
(void) RangeVarGetAndCheckCreationNamespace(relation, lockmode, &viewOid);
|
||||
|
||||
if (OidIsValid(viewOid) && replace)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user