Skip to content

Commit fd1dfa8

Browse files
committed
Merge branch 'PGPRO9_6' into PGPRO9_6_pg_query_state
2 parents 184a446 + dbb3975 commit fd1dfa8

File tree

364 files changed

+7680
-4569
lines changed

Some content is hidden

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

364 files changed

+7680
-4569
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: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
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 \
20+
pathman_rowmarks
1521
EXTRA_REGRESS_OPTS=--temp-config=$(top_srcdir)/$(subdir)/conf.add
1622
EXTRA_CLEAN = $(EXTENSION)--$(EXTVERSION).sql ./isolation_output
1723

contrib/pg_pathman/README.md

Lines changed: 152 additions & 48 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)