introduce separate database-schemas base+rbac #103

Merged
hsh-michaelhoennig merged 54 commits from introduce-separate-database-schemas-base-and-rbac into master 2024-09-16 15:36:38 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d0558bed36 - Show all commits

View File

@ -58,7 +58,7 @@ end; $$;
Returns the current task as set by `hsadminng.currentTask`.
Raises exception if not set.
*/
create or replace function currentTask()
create or replace function basis.currentTask()
returns varchar(127)
stable -- leakproof
language plpgsql as $$

View File

@ -78,7 +78,7 @@ declare
curTask text;
curTxId xid8;
begin
curTask := currentTask();
curTask := basis.currentTask();
curTxId := pg_current_xact_id();
insert