Skip to content

Commit 7306d5e

Browse files
committed
Blind attempt at fixing sepgsql output for 578b22.
1 parent 937e4e5 commit 7306d5e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

contrib/sepgsql/expected/alter.out

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,10 @@ ALTER TABLE regtest_table ENABLE TRIGGER regtest_test_trig; -- not supported
212212
CREATE RULE regtest_test_rule AS ON INSERT TO regtest_table_3 DO ALSO NOTHING;
213213
ALTER TABLE regtest_table_3 DISABLE RULE regtest_test_rule; -- not supported
214214
ALTER TABLE regtest_table_3 ENABLE RULE regtest_test_rule; -- not supported
215+
ALTER TABLE regtest_table SET (fillfactor = 75);
216+
LOG: SELinux: allowed { setattr } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_table name="regtest_schema_2.regtest_table"
217+
ALTER TABLE regtest_table RESET (fillfactor);
218+
LOG: SELinux: allowed { setattr } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_table name="regtest_schema_2.regtest_table"
215219
ALTER TABLE regtest_table_2 NO INHERIT regtest_table; -- not supported
216220
ALTER TABLE regtest_table_2 INHERIT regtest_table; -- not supported
217221
ALTER TABLE regtest_table SET TABLESPACE pg_default;

contrib/sepgsql/expected/ddl.out

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_reg
7373
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.xmax"
7474
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.cmin"
7575
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.xmin"
76-
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.oid"
7776
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.ctid"
7877
LOG: SELinux: allowed { create } scontext=unconfined_u:unconfined_r:sepgsql_regtest_superuser_t:s0 tcontext=unconfined_u:object_r:sepgsql_table_t:s0 tclass=db_column name="regtest_schema.regtest_table_2.a"
7978
CREATE TABLE regtest_ptable (a int) PARTITION BY RANGE (a);

0 commit comments

Comments
 (0)