23 lines
526 B
MySQL
23 lines
526 B
MySQL
|
-- Deploy numerus:set_cookie to pg
|
||
|
-- requires: schema_public
|
||
|
-- requires: check_cookie
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to public;
|
||
|
|
||
|
create or replace function set_cookie(input_cookie text) returns void as
|
||
|
$$
|
||
|
select set_config('role', check_cookie(input_cookie), false);
|
||
|
$$
|
||
|
language sql
|
||
|
stable;
|
||
|
|
||
|
comment on function set_cookie(text) is
|
||
|
'Sets the user information for the cookie and switches to its role';
|
||
|
|
||
|
revoke execute on function set_cookie(text) from public;
|
||
|
grant execute on function set_cookie(text) to authenticator;
|
||
|
|
||
|
commit;
|