whole_patch
-----------
This directory contains the whole patch of Synch Rep against head and
the source files of walsender / walreceiver. Before compiling, please
locate those sources files suitably and apply the patch.

	$ cp walsender.c   src/backend/postmaster
	$ cp walreceiver.c src/backend/postmaster
	$ cp walsender.h   src/include/postmaster
	$ cp walreceiver.h src/include/postmaster
	$ patch -p 0 -d . < synch_rep_v3.patch


split_patches
-------------
This directory contains the patches which are split to be reviewed
easily. If you want to apply these patches one by one, please apply
"Infrastructure changes for recover" patch and create the following
empty files first.

	$ touch src/backend/postmaster/walsender.c
	$ touch src/backend/postmaster/walreceiver.c
	$ touch src/include/postmaster/walsender.h
	$ touch src/include/postmaster/walreceiver.h
	$ patch -p 0 -d . < recovery_infrastruc.v9.patch

	$ patch -p 1 -d . < 01_...
	$ patch -p 1 -d . < 02_...
	....