summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-05-08 11:24:47 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2023-05-08 11:24:47 -0400
commit8d525d7b9545884a3e0d79adcd61543f9ae2ae28 (patch)
tree33229e6efcc8f34c5a3cee16703fcc77a458ea83
parentca73753b090c33bc69ce299b4d7fff891a77b8ad (diff)
downloadpostgresql-8d525d7b9545884a3e0d79adcd61543f9ae2ae28.tar.gz
Adjust sepgsql expected output for 681d9e462 et al.
Security: CVE-2023-2454
-rw-r--r--contrib/sepgsql/expected/ddl.out1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/sepgsql/expected/ddl.out b/contrib/sepgsql/expected/ddl.out
index e8da587564..15d2b9c5e7 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" permissive=0
-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" permissive=0
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);