pub enum Owner {
Ident(Ident),
CurrentRole,
CurrentUser,
SessionUser,
}Expand description
New owner specification for ALTER TABLE ... OWNER TO ...
Variants§
Ident(Ident)
A specific user/role identifier.
CurrentRole
CURRENT_ROLE keyword.
CurrentUser
CURRENT_USER keyword.
SessionUser
SESSION_USER keyword.