File: crossuser.sql

package info (click to toggle)
pgextwlist 1.8-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 160 kB
  • sloc: ansic: 745; makefile: 43; sql: 23; sh: 17
file content (8 lines) | stat: -rw-r--r-- 157 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
CREATE ROLE evil_user;

SET ROLE mere_mortal;
CREATE TABLE mere_table (t citext);

SET ROLE evil_user;
DROP EXTENSION citext;
DROP EXTENSION citext CASCADE;