blob: 5ec0760a276740073ea03f1d5c1768ed83dfbe95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
if not get_option('injection_points')
subdir_done()
endif
tests += {
'name': 'gin',
'sd': meson.current_source_dir(),
'bd': meson.current_build_dir(),
'regress': {
'sql': [
'gin_incomplete_splits',
],
# The injection points are cluster-wide, so disable installcheck
'runningcheck': false,
},
}
|