-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrants.sql
More file actions
15 lines (15 loc) · 991 Bytes
/
grants.sql
File metadata and controls
15 lines (15 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
grant usage on schema assert to public;
revoke execute on all functions in schema assert from public;
grant execute on function assert.add_test(name, name) to public;
grant execute on function assert.remove_test(int) to public;
grant execute on function assert.test_runner() to public;
grant execute on function assert.equal(anyelement, anyelement, text) to public;
grant execute on function assert.not_equal(anyelement, anyelement, text) to public;
grant execute on function assert.true(boolean, text) to public;
grant execute on function assert.false(boolean, text) to public;
grant execute on function assert.null(anyelement, text) to public;
grant execute on function assert.null(text, text) to public;
grant execute on function assert.not_null(anyelement, text) to public;
grant execute on function assert.not_null(text, text) to public;
grant execute on function assert.exception(text,text,text,text,text,text,text,text) to public;
grant select on table assert.view_tests to public;