/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/injection_points/meson.build
65 строк
2 KB
Michael Paquier
Fix propagation of indimmediate flag in index_create_copy()
28 июл 2026, 02:33
28 июл 2026, 02:33
74276e6
Код
Авторство
О чём код?
# Copyright (c) 2022-2026, PostgreSQL Global Development Group if not get_option('injection_points') subdir_done() endif injection_points_sources = files( 'injection_points.c', 'regress_injection.c', ) if host_system == 'windows' injection_points_sources += rc_lib_gen.process(win32ver_rc, extra_args: [ '--NAME', 'injection_points', '--FILEDESC', 'injection_points - facility for injection points',]) endif injection_points = shared_module('injection_points', injection_points_sources, kwargs: pg_test_mod_args, ) test_install_libs += injection_points test_install_data += files( 'injection_points.control', 'injection_points--1.0.sql', ) tests += { 'name': 'injection_points', 'sd': meson.current_source_dir(), 'bd': meson.current_build_dir(), 'regress': { 'sql': [ 'injection_points', 'hashagg', 'reindex_conc', 'vacuum', ], 'regress_args': ['--dlpath', meson.project_build_root() / 'src/test/regress'], # The injection points are cluster-wide, so disable installcheck 'runningcheck': false, }, 'isolation': { 'specs': [ 'basic', 'inplace', 'reindex_concurrently_deferred', 'repack', 'repack_temporal', 'repack_temporal_multirange', 'repack_toast', 'syscache-update-pruned', 'wait_cleanup', 'heap_lock_update', ], 'runningcheck': false, # see syscache-update-pruned # Some tests wait for all snapshots, so avoid parallel execution 'runningcheck-parallel': false, # some tests require wal_level=replica 'regress_args': [ '--temp-config', files('extra.conf'), ], }, }