File: 39_override.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-- 325 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

SET SESSION_REPLICATION_ROLE TO REPLICA;

CREATE TABLE i_want_to_ignore_evts (id serial primary key);
DROP TABLE i_want_to_ignore_evts;

SELECT set_name, ddl_sql_raw, ddl_sql_sent FROM pgl_ddl_deploy.events ORDER BY id DESC LIMIT 10;

RESET SESSION_REPLICATION_ROLE;