unilogic / bucardo forked from bucardo/bucardo

Bucardo

This URL has Read+Write access

name age message
file .perlcriticrc Fri Oct 19 11:30:37 -0700 2007 Perl::Critic updates. Strip mailto from generat... [turnstep]
file Bucardo.pm Loading commit data...
file Bucardo.pm.html Sat Feb 14 16:34:57 -0800 2009 Add new "message" facility. [turnstep]
file Changes Thu Mar 26 20:14:32 -0700 2009 Add "sendmail" option to the customcode input. ... [turnstep]
file INSTALL Thu Apr 23 11:52:25 -0700 2009 Removed now-unnecessary instructions about lang... [Joshua Tolley]
file LICENSE Sat Jan 10 19:16:10 -0800 2009 Bump year to 2009 [turnstep]
file MANIFEST Wed Jan 07 12:00:52 -0800 2009 Remove unused test file. [turnstep]
file MANIFEST.SKIP Mon Sep 24 09:16:47 -0700 2007 Initial git import [turnstep]
file META.yml Wed Feb 11 14:45:59 -0800 2009 Drop sync.disable_trigger and sync.disable_rule... [turnstep]
file Makefile.PL Fri Feb 06 09:07:22 -0800 2009 Convert stupid smart quotes to something sane. [turnstep]
file README Sat Jan 10 19:16:10 -0800 2009 Bump year to 2009 [turnstep]
file README.dev Wed Sep 17 08:32:37 -0700 2008 Use canonical "git *" instead of "git-*" forms. [jonjensen]
file SIGNATURE Thu Oct 11 15:48:36 -0700 2007 More tweaks in anticipation of new version. [turnstep]
file TODO Tue Apr 28 19:13:24 -0700 2009 More items [turnstep]
file add_strict_checking.sql.pg Tue Aug 05 12:48:17 -0700 2008 Add strict_checking to make sure columns are th... [turnstep]
file bucardo.html
file bucardo.schema
file bucardo_ctl
file bucardo_ctl.html Thu Feb 26 06:24:25 -0800 2009 Add bucardo_rate table, to track the replicatio... [turnstep]
directory scripts/ Mon Mar 23 12:34:11 -0700 2009 New version of FreeBSD rc script, by Ben Allen. [turnstep]
directory t/ Wed Apr 29 14:32:56 -0700 2009 Add tests for customselect [Joshua Tolley]
README
Bucardo - a table-based replication system

DESCRIPTION:
------------

This is version 3.1.0 of Bucardo.


COPYRIGHT:
----------

  Copyright (c) 2005-2009 Greg Sabino Mullane <greg@endpoint.com>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.3 or,
at your option, any later version of Perl 5 you may have available.


REQUIREMENTS:
-------------

    build, test, and install Perl 5             (at least 5.8.3)
    build, test, and install Postgres           (at least 8.1)
    build, test, and install the DBI module     (at least 1.51)
    build, test, and install the DBD::Pg module (at least 2.0.0)
    
    You must have at least one database that has Pl/Pgsql and Pl/Perl installed.
  Target databases may need Pl/Pgsql.


INSTALLATION:
-------------
To install this module type the following:

   perl Makefile.PL
   make
   make test (but see below first)
   make install

EXAMPLES:
---------

See the test suite in the t/ subdirectory for some examples.


TESTING:
--------

Because Test::Harness does not play well with forking, the Makefile will attempt to 
start a small helper daemon for controlling Bucardo from within the tests. You will 
need to tell the test script where it can find some databases to test with by 
editing this file:

  t/bucardo.test.data

Once that is set, simply do the usual:

  make test

Or better still:

  make test TEST_VERBOSE=1