mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Add regression test coverage for contrib/pg_buffercache.
We can't check the output of this view very closely without creating portability headaches, but we can make sure that the number of rows is as-expected. In any case, this is sufficient to exercise all the C code within, which is a lot better than the 0% coverage we had before. DongWook Lee Discussion: https://postgr.es/m/CAAcByaLCHGJB7qAENEcx9D09UL=w4ma+yijwF_-1MSqQZ9wK6Q@mail.gmail.com
This commit is contained in:
6
contrib/pg_buffercache/sql/pg_buffercache.sql
Normal file
6
contrib/pg_buffercache/sql/pg_buffercache.sql
Normal file
@ -0,0 +1,6 @@
|
||||
CREATE EXTENSION pg_buffercache;
|
||||
|
||||
select count(*) = (select setting::bigint
|
||||
from pg_settings
|
||||
where name = 'shared_buffers')
|
||||
from pg_buffercache;
|
Reference in New Issue
Block a user