File tree 1 file changed +5
-5
lines changed
src/test/regress/expected
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 35
35
' LANGUAGE 'plpgsql';
36
36
-- do something
37
37
SELECT count(*) FROM tenk2;
38
- count
38
+ count
39
39
-------
40
40
10000
41
41
(1 row)
42
42
43
43
SELECT count(*) FROM tenk2 WHERE unique1 = 1;
44
- count
44
+ count
45
45
-------
46
46
1
47
47
(1 row)
48
48
49
49
-- let stats collector catch up
50
50
SELECT sleep('0:0:2'::interval);
51
- sleep
51
+ sleep
52
52
-------
53
53
0
54
54
(1 row)
@@ -60,7 +60,7 @@ SELECT st.seq_scan >= pr.seq_scan + 1,
60
60
st.idx_tup_fetch >= pr.idx_tup_fetch + 1
61
61
FROM pg_stat_user_tables AS st, pg_class AS cl, prevstats AS pr
62
62
WHERE st.relname='tenk2' AND cl.relname='tenk2';
63
- ?column? | ?column? | ?column? | ?column?
63
+ ?column? | ?column? | ?column? | ?column?
64
64
----------+----------+----------+----------
65
65
t | t | t | t
66
66
(1 row)
@@ -69,7 +69,7 @@ SELECT st.heap_blks_read + st.heap_blks_hit >= pr.heap_blks + cl.relpages,
69
69
st.idx_blks_read + st.idx_blks_hit >= pr.idx_blks + 1
70
70
FROM pg_statio_user_tables AS st, pg_class AS cl, prevstats AS pr
71
71
WHERE st.relname='tenk2' AND cl.relname='tenk2';
72
- ?column? | ?column?
72
+ ?column? | ?column?
73
73
----------+----------
74
74
t | t
75
75
(1 row)
You can’t perform that action at this time.
0 commit comments