Skip to content

feat: support grant revoke procedure from sql

Arseniy Volynets requested to merge revoke-proc into master

Summary

  • Update sbroad submodule to commit with grant/revoke procedure support
  • Use existing mechanisms for grant/revoke ACL opcodes for grant/revoke procedure implementation
  • Add integration tests
  • Valid combinations:

all procedures: grant/revoke create/execute/drop

specific procedure: grant/revoke execute/drop

  • Syntax:
grant create procedure to alice option(timeout=3)
grant execute procedure on "spam"(int) to "alex"
grant drop procedure on foo to bob
revoke drop procedure on foo from bob

Edited by Arseniy Volynets

Merge request reports