Add simple tests and meson build. Maxim Orlov <m.orlov@postgrespro.ru>
[online_analyze.git] / expected / online_analyze.out
1 LOAD 'online_analyze';
2 SET online_analyze.enable = on;
3 SET "online_analyze.verbose" = on;
4 SET online_analyze.table_type = "all";
5 SHOW online_analyze.enable;
6  online_analyze.enable 
7 -----------------------
8  on
9 (1 row)
10
11 SHOW "online_analyze.verbose";
12  online_analyze.verbose 
13 ------------------------
14  on
15 (1 row)
16
17 SHOW online_analyze.table_type;
18  online_analyze.table_type 
19 ---------------------------
20  all
21 (1 row)
22
23 CREATE TABLE oa_tbl(
24         foo int,
25         bar text
26 );
27 SHOW online_analyze.exclude_tables;
28  online_analyze.exclude_tables 
29 -------------------------------
30  
31 (1 row)
32
33 SET online_analyze.exclude_tables = "oa_tbl";
34 SHOW online_analyze.exclude_tables;
35  online_analyze.exclude_tables 
36 -------------------------------
37  public.oa_tbl
38 (1 row)
39
40 DROP TABLE oa_tbl;
41 SHOW online_analyze.exclude_tables;
42  online_analyze.exclude_tables 
43 -------------------------------
44  
45 (1 row)
46
47 SET online_analyze.enable = off;