You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When I use the scope keyword with some valyes within the Security Context, it is overridden with the value ['sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help']
To Reproduce
Steps to reproduce the behavior:
Go on the Playground
open the Security Context and set { "scope": "test" }
display the content of the Security Context through the code (for example with a raise Exception). You should get 'scope': ['sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help'] (with some other values)
Expected behavior
I should get 'scope': ['test'] or possibly 'scope': ['test', 'sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help'] if the other values are mandatory
The text was updated successfully, but these errors were encountered:
Describe the bug
When I use the
scope
keyword with some valyes within the Security Context, it is overridden with the value['sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help']
To Reproduce
Steps to reproduce the behavior:
{ "scope": "test" }
raise Exception
). You should get'scope': ['sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help']
(with some other values)Expected behavior
I should get
'scope': ['test']
or possibly'scope': ['test', 'sql-runner', 'sql-runner-permissions:select,with,explain,analyze,show,check,describe,get,help']
if the other values are mandatoryThe text was updated successfully, but these errors were encountered: