Fixes missin ok issue

pull/7240/head
gindibay 2023-10-24 15:13:22 +03:00
parent b5cbc048b7
commit 3a0a5ae344
1 changed files with 1 additions and 1 deletions

View File

@ -410,6 +410,6 @@ List *
CreateDatabaseStmtObjectAddress(Node *node, bool missing_ok, bool isPostprocess) CreateDatabaseStmtObjectAddress(Node *node, bool missing_ok, bool isPostprocess)
{ {
CreatedbStmt *stmt = castNode(CreatedbStmt, node); CreatedbStmt *stmt = castNode(CreatedbStmt, node);
ObjectAddress *dbAddress = GetDatabaseAddressFromDatabaseName(stmt->dbname,stmt->missing_ok); ObjectAddress *dbAddress = GetDatabaseAddressFromDatabaseName(stmt->dbname,missing_ok);
return list_make1(dbAddress); return list_make1(dbAddress);
} }