mirror of
https://github.com/postgres/postgres.git
synced 2025-05-31 00:01:57 -04:00
Commit 05d4cbf9b6ba708858984b01ca0fc56d59d4ec7c needed to do this, but didn't. Per Justin Pryzby. Discussion: 20220927191710.GG6256@telsasoft.com
29 lines
573 B
Meson
29 lines
573 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--1.3--1.4.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',
|
|
],
|
|
},
|
|
}
|