File: hooks.out

package info (click to toggle)
pgextwlist 1.19-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 216 kB
  • sloc: ansic: 849; sql: 62; makefile: 40; sh: 6
file content (34 lines) | stat: -rw-r--r-- 1,642 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
select case
  when setting::int >= 160000 then 'PG 16+'
  end as "regression output for PG version"
from pg_settings where name = 'server_version_num';
 regression output for PG version 
----------------------------------
 
(1 row)

set client_min_messages = debug;
set extwlist.custom_path = '/dummy';
set role mere_mortal;
-- in the hope refint stays at version 1.0 in PostgreSQL
create extension refint;
DEBUG:  Considering custom script "/dummy/refint/before--1.0.sql"
DEBUG:  Considering custom script "/dummy/refint/before-create.sql"
DEBUG:  Considering custom script "/dummy/refint/after--1.0.sql"
DEBUG:  Considering custom script "/dummy/refint/after-create.sql"
alter extension refint update;
DEBUG:  Considering custom script "/dummy/refint/before--1.0--1.0.sql"
DEBUG:  Considering custom script "/dummy/refint/before-update.sql"
NOTICE:  version "1.0" of extension "refint" is already installed
DEBUG:  Considering custom script "/dummy/refint/after--1.0--1.0.sql"
DEBUG:  Considering custom script "/dummy/refint/after-update.sql"
comment on extension refint is 'snarky remark';
DEBUG:  Considering custom script "/dummy/refint/before-comment.sql"
DEBUG:  Considering custom script "/dummy/refint/after-comment.sql"
drop extension refint, refint;
DEBUG:  Considering custom script "/dummy/refint/before-drop.sql"
DEBUG:  Considering custom script "/dummy/refint/before-drop.sql"
DEBUG:  drop auto-cascades to function check_primary_key()
DEBUG:  drop auto-cascades to function check_foreign_key()
DEBUG:  Considering custom script "/dummy/refint/after-drop.sql"
DEBUG:  Considering custom script "/dummy/refint/after-drop.sql"