File: 10_no_create_user.sql

package info (click to toggle)
pgl-ddl-deploy 2.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,780 kB
  • sloc: sql: 47,586; ansic: 364; python: 282; sh: 72; makefile: 63
file content (11 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
SET client_min_messages TO warning;
\set VERBOSITY TERSE

CREATE ROLE test_pgl_ddl_deploy_nopriv;

SET ROLE test_pgl_ddl_deploy_nopriv;

CREATE TEMP TABLE bla (id serial primary key);
DROP TABLE bla;

RESET ROLE;