diff options
author | Tom Lane | 2023-05-08 15:24:47 +0000 |
---|---|---|
committer | Tom Lane | 2023-05-08 15:24:47 +0000 |
commit | 2cd843cc9a5d96450f70b165f9f5b15319e9f136 (patch) | |
tree | 69e1b54848470008c38e8031ad398492c06b70d3 | |
parent | ee87b482c3952a1e7504a8ba0df7c8ebaab36f72 (diff) |
Adjust sepgsql expected output for 681d9e462 et al.
Security: CVE-2023-2454
-rw-r--r-- | contrib/sepgsql/expected/ddl.out | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/sepgsql/expected/ddl.out b/contrib/sepgsql/expected/ddl.out index 0def0e57aec..5ca1be1ac39 100644 --- a/contrib/sepgsql/expected/ddl.out +++ b/contrib/sepgsql/expected/ddl.out @@ -24,7 +24,6 @@ LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_reg CREATE USER regress_sepgsql_test_user; CREATE SCHEMA regtest_schema; LOG: SELinux: allowed { create } 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" -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="public" GRANT ALL ON SCHEMA regtest_schema TO regress_sepgsql_test_user; SET search_path = regtest_schema, public; CREATE TABLE regtest_table (x serial primary key, y text); |