diff options
| author | Robert Haas | 2011-12-21 14:12:43 +0000 |
|---|---|---|
| committer | Robert Haas | 2011-12-21 14:14:02 +0000 |
| commit | e1042a348421bc16f4d4307228a9951e38a984f1 (patch) | |
| tree | 4eacfff9c369f9c60d642c99fe9381785f10930f /contrib/sepgsql/sql | |
| parent | 7f0e4bb82e408090c0366c63a9ff4c0f7c4b0a8e (diff) | |
sepgsql: Check CREATE permissions for some object types.
KaiGai Kohei, reviewed by Dimitri Fontaine and me.
Diffstat (limited to 'contrib/sepgsql/sql')
| -rw-r--r-- | contrib/sepgsql/sql/create.sql | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/contrib/sepgsql/sql/create.sql b/contrib/sepgsql/sql/create.sql new file mode 100644 index 00000000000..b0695b41a94 --- /dev/null +++ b/contrib/sepgsql/sql/create.sql @@ -0,0 +1,46 @@ +-- +-- Regression Test for Creation of Object Permission Checks +-- + +-- confirm required permissions using audit messages +-- @SECURITY-CONTEXT=unconfined_u:unconfined_r:unconfined_t:s0 +SET sepgsql.debug_audit = true; +SET client_min_messages = LOG; + +CREATE DATABASE regtest_sepgsql_test_database; + +CREATE SCHEMA regtest_schema; + +SET search_path = regtest_schema, public; + +CREATE TABLE regtest_table (x serial primary key, y text); + +ALTER TABLE regtest_table ADD COLUMN z int; + +CREATE TABLE regtest_table_2 (a int) WITH OIDS; + +-- corresponding toast table should not have label and permission checks +ALTER TABLE regtest_table_2 ADD COLUMN b text; + +-- VACUUM FULL internally create a new table and swap them later. +VACUUM FULL regtest_table; + +CREATE VIEW regtest_view AS SELECT * FROM regtest_table WHERE x < 100; + +CREATE SEQUENCE regtest_seq; + +CREATE TYPE regtest_comptype AS (a int, b text); + +CREATE FUNCTION regtest_func(text,int[]) RETURNS bool LANGUAGE plpgsql + AS 'BEGIN RAISE NOTICE ''regtest_func => %'', $1; RETURN true; END'; + +CREATE AGGREGATE regtest_agg ( + sfunc1 = int4pl, basetype = int4, stype1 = int4, initcond1 = '0' +); + +-- +-- clean-up +-- +DROP DATABASE IF EXISTS regtest_sepgsql_test_database; + +DROP SCHEMA IF EXISTS regtest_schema CASCADE; |
