Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ecadc7a

Browse files
committed
merge with twophase_decoding2 branch
2 parents c1d7f93 + a6ee807 commit ecadc7a

File tree

138 files changed

+24197
-33
lines changed

Some content is hidden

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

138 files changed

+24197
-33
lines changed

contrib/Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ SUBDIRS = \
3535
pg_stat_statements \
3636
pg_trgm \
3737
pgcrypto \
38+
pglogical_output \
39+
pglogical_output_plhooks \
40+
pglogical \
3841
pgrowlocks \
3942
pgstattuple \
4043
pg_visibility \

contrib/pglogical/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
results
2+
tmp_check
3+
*.o
4+
*.so
5+
*~

contrib/pglogical/.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "pglogical_output"]
2+
path = pglogical_output
3+
url = git@github.com:2ndQuadrant/pglogical_output.git

contrib/pglogical/Makefile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# contrib/pglogical/Makefile
2+
3+
MODULE_big = pglogical
4+
EXTENSION = pglogical
5+
PGFILEDESC = "pglogical - logical replication"
6+
7+
DATA = pglogical--1.0.1.sql
8+
9+
OBJS = pglogical_apply.o pglogical_conflict.o pglogical_manager.o \
10+
pglogical_node.o pglogical_proto.o pglogical_relcache.o \
11+
pglogical.o pglogical_repset.o pglogical_rpc.o \
12+
pglogical_functions.o pglogical_queue.o pglogical_fe.o \
13+
pglogical_worker.o pglogical_hooks.o pglogical_sync.o
14+
15+
PG_CPPFLAGS = -I$(libpq_srcdir) -I$(top_srcdir)/contrib/pglogical_output
16+
SHLIB_LINK = $(libpq)
17+
18+
REGRESS = preseed infofuncs init_fail init preseed_check basic extended toasted replication_set add_table matview bidirectional primary_key foreign_key functions copy twophase drop
19+
20+
# In-tree builds only
21+
subdir = contrib/pglogical
22+
top_builddir = ../..
23+
include $(top_builddir)/src/Makefile.global
24+
include $(top_srcdir)/contrib/contrib-global.mk
25+
26+
# Disabled because these tests require "wal_level=logical", which
27+
# typical installcheck users do not have (e.g. buildfarm clients).
28+
@installcheck: ;
29+
30+
EXTRA_INSTALL += contrib/pglogical_output
31+
EXTRA_REGRESS_OPTS += --temp-config $(top_srcdir)/contrib/pglogical/regress-postgresql.conf
32+
33+
.PHONY: pglogical_create_subscriber

0 commit comments

Comments
 (0)