mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
Add a regression test for pgstattuple.
This is mainly to prove that the NaN fix actually works cross-platform.
This commit is contained in:
parent
af7d181298
commit
bd165757f4
4
contrib/pgstattuple/.gitignore
vendored
Normal file
4
contrib/pgstattuple/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
# Generated subdirectories
|
||||
/log/
|
||||
/results/
|
||||
/tmp_check/
|
@ -6,6 +6,8 @@ OBJS = pgstattuple.o pgstatindex.o
|
||||
EXTENSION = pgstattuple
|
||||
DATA = pgstattuple--1.0.sql pgstattuple--unpackaged--1.0.sql
|
||||
|
||||
REGRESS = pgstattuple
|
||||
|
||||
ifdef USE_PGXS
|
||||
PG_CONFIG = pg_config
|
||||
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
||||
|
38
contrib/pgstattuple/expected/pgstattuple.out
Normal file
38
contrib/pgstattuple/expected/pgstattuple.out
Normal file
@ -0,0 +1,38 @@
|
||||
CREATE EXTENSION pgstattuple;
|
||||
--
|
||||
-- It's difficult to come up with platform-independent test cases for
|
||||
-- the pgstattuple functions, but the results for empty tables and
|
||||
-- indexes should be that.
|
||||
--
|
||||
create table test (a int primary key);
|
||||
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "test_pkey" for table "test"
|
||||
select * from pgstattuple('test'::text);
|
||||
table_len | tuple_count | tuple_len | tuple_percent | dead_tuple_count | dead_tuple_len | dead_tuple_percent | free_space | free_percent
|
||||
-----------+-------------+-----------+---------------+------------------+----------------+--------------------+------------+--------------
|
||||
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
|
||||
(1 row)
|
||||
|
||||
select * from pgstattuple('test'::regclass);
|
||||
table_len | tuple_count | tuple_len | tuple_percent | dead_tuple_count | dead_tuple_len | dead_tuple_percent | free_space | free_percent
|
||||
-----------+-------------+-----------+---------------+------------------+----------------+--------------------+------------+--------------
|
||||
0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0
|
||||
(1 row)
|
||||
|
||||
select * from pgstatindex('test_pkey');
|
||||
version | tree_level | index_size | root_block_no | internal_pages | leaf_pages | empty_pages | deleted_pages | avg_leaf_density | leaf_fragmentation
|
||||
---------+------------+------------+---------------+----------------+------------+-------------+---------------+------------------+--------------------
|
||||
2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NaN | NaN
|
||||
(1 row)
|
||||
|
||||
select pg_relpages('test');
|
||||
pg_relpages
|
||||
-------------
|
||||
0
|
||||
(1 row)
|
||||
|
||||
select pg_relpages('test_pkey');
|
||||
pg_relpages
|
||||
-------------
|
||||
1
|
||||
(1 row)
|
||||
|
17
contrib/pgstattuple/sql/pgstattuple.sql
Normal file
17
contrib/pgstattuple/sql/pgstattuple.sql
Normal file
@ -0,0 +1,17 @@
|
||||
CREATE EXTENSION pgstattuple;
|
||||
|
||||
--
|
||||
-- It's difficult to come up with platform-independent test cases for
|
||||
-- the pgstattuple functions, but the results for empty tables and
|
||||
-- indexes should be that.
|
||||
--
|
||||
|
||||
create table test (a int primary key);
|
||||
|
||||
select * from pgstattuple('test'::text);
|
||||
select * from pgstattuple('test'::regclass);
|
||||
|
||||
select * from pgstatindex('test_pkey');
|
||||
|
||||
select pg_relpages('test');
|
||||
select pg_relpages('test_pkey');
|
Loading…
Reference in New Issue
Block a user