Fixes missing ok issue

pull/7240/head
gindibay 2023-10-24 15:14:05 +03:00
parent 3a0a5ae344
commit 2f52fbd13e
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ List *
DropDatabaseStmtObjectAddress(Node *node, bool missing_ok, bool isPostprocess)
{
DropdbStmt *stmt = castNode(DropdbStmt, node);
ObjectAddress *dbAddress = GetDatabaseAddressFromDatabaseName(stmt->dbname, stmt->missing_ok);
ObjectAddress *dbAddress = GetDatabaseAddressFromDatabaseName(stmt->dbname, missing_ok);
return list_make1(dbAddress);
}