Skip to content

Commit f8a9633

Browse files
authoredNov 8, 2020
Merge pull request #220 from kulaginm/postgresql-13-port
PostgreSQL-13 compatibility
2 parents bf13f4a + 347f8dc commit f8a9633

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+6202
-100
lines changed
 

‎.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ notifications:
1818
on_failure: always
1919

2020
env:
21+
- PG_VERSION=13 LEVEL=hardcore
22+
- PG_VERSION=13
2123
- PG_VERSION=12 LEVEL=hardcore
2224
- PG_VERSION=12
2325
- PG_VERSION=11 LEVEL=hardcore

‎Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,16 @@ REGRESS = pathman_array_qual \
6666

6767
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
6868

69-
EXTRA_CLEAN = pg_pathman--$(EXTVERSION).sql ./isolation_output
69+
CMOCKA_EXTRA_CLEAN = missing_basic.o missing_list.o missing_stringinfo.o missing_bitmapset.o rangeset_tests.o rangeset_tests
70+
EXTRA_CLEAN = ./isolation_output $(patsubst %,tests/cmocka/%, $(CMOCKA_EXTRA_CLEAN))
7071

7172
ifdef USE_PGXS
7273
PG_CONFIG=pg_config
7374
PGXS := $(shell $(PG_CONFIG) --pgxs)
7475
VNUM := $(shell $(PG_CONFIG) --version | awk '{print $$2}')
7576

7677
# check for declarative syntax
78+
# this feature will not be ported to >=12
7779
ifeq ($(VNUM),$(filter 10% 11%,$(VNUM)))
7880
REGRESS += pathman_declarative
7981
OBJS += src/declarative.o

0 commit comments

Comments
 (0)
Please sign in to comment.