Fixes indentation

pull/7404/head
gurkanindibay 2024-02-01 17:14:49 +03:00
parent 6bff0ad924
commit 78d850950b
1 changed files with 1 additions and 2 deletions

View File

@ -1678,11 +1678,10 @@ RunPostprocessMainDBCommand(Node *parsetree)
static ObjectInfo
GetObjectInfo(Node *parsetree)
{
if (IsA(parsetree, CreateRoleStmt))
{
CreateRoleStmt *stmt = castNode(CreateRoleStmt, parsetree);
ObjectInfo info = {
ObjectInfo info = {
.name = stmt->role,
.id = get_role_oid(stmt->role, false)
};