Skip to content

Commit c8672b5

Browse files
committed
Merge branch 'PGPRO9_6' into PGPROEE9_6
2 parents 6ee2037 + be1646a commit c8672b5

Some content is hidden

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

46 files changed

+4226
-2066
lines changed

contrib/pg_pathman/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.deps
22
isolation_output
3-
results/pg_pathman.out
3+
results/*
44
regression.diffs
55
regression.out
66
*.o

contrib/pg_pathman/Makefile

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
# contrib/pg_pathman/Makefile
22

33
MODULE_big = pg_pathman
4-
OBJS = src/init.o src/relation_info.o src/utils.o src/partition_filter.o src/runtimeappend.o \
5-
src/runtime_merge_append.o src/pg_pathman.o src/dsm_array.o src/rangeset.o src/pl_funcs.o \
6-
src/pathman_workers.o src/hooks.o src/nodes_common.o src/xact_handling.o src/pg_compat.o \
7-
$(WIN32RES)
4+
OBJS = src/init.o src/relation_info.o src/utils.o src/partition_filter.o \
5+
src/runtimeappend.o src/runtime_merge_append.o src/pg_pathman.o src/rangeset.o \
6+
src/pl_funcs.o src/pl_range_funcs.o src/pl_hash_funcs.o src/pathman_workers.o \
7+
src/hooks.o src/nodes_common.o src/xact_handling.o src/copy_stmt_hooking.o \
8+
src/pg_compat.o $(WIN32RES)
89

910
EXTENSION = pg_pathman
1011
EXTVERSION = 1.0
1112
DATA_built = $(EXTENSION)--$(EXTVERSION).sql
1213
PGFILEDESC = "pg_pathman - partitioning tool"
1314

14-
REGRESS = pg_pathman
15+
REGRESS = pathman_basic \
16+
pathman_runtime_nodes \
17+
pathman_callbacks \
18+
pathman_domains \
19+
pathman_foreign_keys
1520
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
1621
EXTRA_CLEAN = $(EXTENSION)--$(EXTVERSION).sql ./isolation_output
1722

0 commit comments

Comments
 (0)