Skip to content

Commit 6a57545

Browse files
committed
Merge branch 'master' into stable
2 parents f20f100 + 92f42d5 commit 6a57545

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
sudo: required
1+
os: linux
2+
3+
dist: bionic
24

35
language: c
46

@@ -21,6 +23,8 @@ notifications:
2123
on_failure: always
2224

2325
env:
26+
- PG_VERSION=15beta1
27+
- PG_VERSION=15beta1 LEVEL=hardcore
2428
- PG_VERSION=14
2529
- PG_VERSION=14 LEVEL=hardcore
2630
- PG_VERSION=13

src/disable_core_macro.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,18 @@
1616
#undef TRACE_POSTGRESQL_SORT_START
1717
#undef TRACE_POSTGRESQL_SORT_DONE
1818

19+
#if PG_VERSION_NUM >= 110000
1920
#define TRACE_POSTGRESQL_SORT_START(arg1, arg2, arg3, arg4, arg5, arg6) \
2021
do {} while(0)
22+
#else
23+
#define TRACE_POSTGRESQL_SORT_START(arg1, arg2, arg3, arg4, arg5) \
24+
do {} while(0)
25+
#endif
26+
27+
2128
#define TRACE_POSTGRESQL_SORT_DONE(arg1, arg2) \
2229
do {} while(0)
2330

31+
32+
2433
#endif /* __DISABLE_CORE_MACRO_H__ */

0 commit comments

Comments
 (0)