Just for context: when _pico_user & _pico_privilege were originally implemented, this wasn't done intentionally, because in my understanding those grants are basic and are required by pretty much all users. And because our clusterwide ACL is more high-level than the tarantool one I decided to omit these implementation details
Yeah, let me explain a bit more. Problems begin when you try to do something with these default permissions. In pico.grant_privilege for example we run the check whether user already has specified permissions based on global permission space. If permission is missing then we decide to create it or and creation fails on tarantool level because permission is already there. For example you cant revoke alter permission from user because on creation it is not there:
-- worksbox.schema.user.revoke("Yoda","alter","user","Yoda")-- doesnt work, returns immediately because privilege is missing from global scalepico.revoke_privilege("Yoda","alter","user","Yoda")-- when you try to grant it:pico.grant_privilege("Yoda","alter","user","Yoda")thread'main'panickedat'granting a privilege shouldn'tfail:LuaError(ExecutionError("User '32' already has alter access on user 'Yoda'"))-- the whole thing crashes :(
This case may be a not on a hot path, but it is still worth fixing. Another issue I've created is more important: #384 (closed) because here you cant grant super to anybody because it doesnt exist on picodata level