diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2024-11-01 12:49:43 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2024-11-01 12:50:01 -0400 |
commit | cf590c568d0535785d594f79dcdaafdfeb46ac2f (patch) | |
tree | 08193d1e3818eeed700fe598acca3fb8f46dc277 | |
parent | 641a5b7a1447954076728f259342c2f9201bb0b5 (diff) | |
download | postgresql-cf590c568d0535785d594f79dcdaafdfeb46ac2f.tar.gz postgresql-cf590c568d0535785d594f79dcdaafdfeb46ac2f.zip |
Update contrib/sepgsql regression tests for commit 89e51abcb.
Oversight revealed by buildfarm.
-rw-r--r-- | contrib/sepgsql/expected/ddl.out | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/sepgsql/expected/ddl.out b/contrib/sepgsql/expected/ddl.out index 93c677e5463..7e8deae4f93 100644 --- a/contrib/sepgsql/expected/ddl.out +++ b/contrib/sepgsql/expected/ddl.out @@ -154,6 +154,8 @@ LOG: SELinux: allowed { add_name } scontext=unconfined_u:unconfined_r:sepgsql_r CREATE FUNCTION regtest_func(text,int[]) RETURNS bool LANGUAGE plpgsql AS 'BEGIN RAISE NOTICE ''regtest_func => %'', $1; RETURN true; END'; LOG: SELinux: allowed { search } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=system_u:object_r:sepgsql_schema_t:s0 tclass=db_schema name="pg_catalog" permissive=0 +LINE 1: CREATE FUNCTION regtest_func(text,int[]) RETURNS bool LANGUA... + ^ LOG: SELinux: allowed { add_name } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_schema_t:s0 tclass=db_schema name="regtest_schema" permissive=0 LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_proc_exec_t:s0 tclass=db_procedure name="regtest_schema.regtest_func(pg_catalog.text,integer[])" permissive=0 CREATE AGGREGATE regtest_agg ( @@ -247,6 +249,8 @@ LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_reg CREATE FUNCTION regtest_func_2(int) RETURNS bool LANGUAGE plpgsql AS 'BEGIN RETURN $1 * $1 < 100; END'; LOG: SELinux: allowed { search } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=system_u:object_r:sepgsql_schema_t:s0 tclass=db_schema name="pg_catalog" permissive=0 +LINE 1: CREATE FUNCTION regtest_func_2(int) RETURNS bool LANGUAGE pl... + ^ LOG: SELinux: allowed { add_name } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_schema_t:s0 tclass=db_schema name="regtest_schema" permissive=0 LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_proc_exec_t:s0 tclass=db_procedure name="regtest_schema.regtest_func_2(integer)" permissive=0 RESET SESSION AUTHORIZATION; |