Commit f7e5e9d4 authored by Peter Eisentraut's avatar Peter Eisentraut

More whitespace fixes. Do people write the expected files by hand?

parent 32ab99ba
......@@ -35,20 +35,20 @@ END;
' LANGUAGE 'plpgsql';
-- do something
SELECT count(*) FROM tenk2;
count
count
-------
10000
(1 row)
SELECT count(*) FROM tenk2 WHERE unique1 = 1;
count
count
-------
1
(1 row)
-- let stats collector catch up
SELECT sleep('0:0:2'::interval);
sleep
sleep
-------
0
(1 row)
......@@ -60,7 +60,7 @@ SELECT st.seq_scan >= pr.seq_scan + 1,
st.idx_tup_fetch >= pr.idx_tup_fetch + 1
FROM pg_stat_user_tables AS st, pg_class AS cl, prevstats AS pr
WHERE st.relname='tenk2' AND cl.relname='tenk2';
?column? | ?column? | ?column? | ?column?
?column? | ?column? | ?column? | ?column?
----------+----------+----------+----------
t | t | t | t
(1 row)
......@@ -69,7 +69,7 @@ SELECT st.heap_blks_read + st.heap_blks_hit >= pr.heap_blks + cl.relpages,
st.idx_blks_read + st.idx_blks_hit >= pr.idx_blks + 1
FROM pg_statio_user_tables AS st, pg_class AS cl, prevstats AS pr
WHERE st.relname='tenk2' AND cl.relname='tenk2';
?column? | ?column?
?column? | ?column?
----------+----------
t | t
(1 row)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment