File: load.out

package info (click to toggle)
pg-wait-sampling 1.1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: ansic: 1,293; sql: 119; makefile: 22; sh: 17
file content (31 lines) | stat: -rw-r--r-- 957 bytes parent folder | download | duplicates (4)
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
CREATE EXTENSION pg_wait_sampling;
\d pg_wait_sampling_current
View "public.pg_wait_sampling_current"
   Column   |  Type   | Modifiers 
------------+---------+-----------
 pid        | integer | 
 event_type | text    | 
 event      | text    | 
 queryid    | bigint  | 

\d pg_wait_sampling_history
      View "public.pg_wait_sampling_history"
   Column   |           Type           | Modifiers 
------------+--------------------------+-----------
 pid        | integer                  | 
 ts         | timestamp with time zone | 
 event_type | text                     | 
 event      | text                     | 
 queryid    | bigint                   | 

\d pg_wait_sampling_profile
View "public.pg_wait_sampling_profile"
   Column   |  Type   | Modifiers 
------------+---------+-----------
 pid        | integer | 
 event_type | text    | 
 event      | text    | 
 queryid    | bigint  | 
 count      | bigint  | 

DROP EXTENSION pg_wait_sampling;