Skip to content

Commit 35533e3

Browse files
committed
Merge branch 'dev/pglogical' of https://github.com/2ndQuadrant/postgres into dev/pglogical
2 parents 1fa2a6b + 7d2b7b6 commit 35533e3

File tree

127 files changed

+23450
-0
lines changed

Some content is hidden

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

127 files changed

+23450
-0
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
postgres_fdw \

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 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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy