
There are still some alignment-related failures in the buildfarm, which might or might not be able to be fixed quickly, but I've also just realized that it increased the size of many WAL records by 4 bytes because a block reference contains a RelFileLocator. The effect of that hasn't been studied or discussed, so revert for now.
28 lines
539 B
Meson
28 lines
539 B
Meson
pg_buffercache = shared_module('pg_buffercache',
|
|
files(
|
|
'pg_buffercache_pages.c',
|
|
),
|
|
kwargs: contrib_mod_args,
|
|
)
|
|
contrib_targets += pg_buffercache
|
|
|
|
install_data(
|
|
'pg_buffercache--1.0--1.1.sql',
|
|
'pg_buffercache--1.1--1.2.sql',
|
|
'pg_buffercache--1.2--1.3.sql',
|
|
'pg_buffercache--1.2.sql',
|
|
'pg_buffercache.control',
|
|
kwargs: contrib_data_args,
|
|
)
|
|
|
|
tests += {
|
|
'name': 'pg_buffercache',
|
|
'sd': meson.current_source_dir(),
|
|
'bd': meson.current_build_dir(),
|
|
'regress': {
|
|
'sql': [
|
|
'pg_buffercache',
|
|
],
|
|
},
|
|
}
|