From: John Napiorkowski Date: Fri, 18 Jul 2008 14:14:28 +0000 (+0000) Subject: updated CHANGES, removed debug code left by accident, added a bit of POD regarding... X-Git-Tag: v0.08240~402^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=e515254d9f03c98058ed0c7220ef06094aff0bf8 updated CHANGES, removed debug code left by accident, added a bit of POD regarding the word "replicant" --- diff --git a/Changes b/Changes index e6bd62d..a7367b8 100644 --- a/Changes +++ b/Changes @@ -19,8 +19,8 @@ Revision history for DBIx::Class names should now be consistent and collision-free. - Improve handling of explicit key attr in ResultSet::find - Add warnings for non-unique ResultSet::find queries - - Changed Storage::DBI::Replication to Storage::DBI::Replicated, fixed - some problems using this with versioned databases, added some docs + - Changed Storage::DBI::Replication to Storage::DBI::Replicated and + refactored support. - By default now deploy/diff et al. will ignore constraint and index names - Add ResultSet::_is_deterministic_value, make new_result filter the diff --git a/lib/DBIx/Class/Storage/DBI/Replicated.pm b/lib/DBIx/Class/Storage/DBI/Replicated.pm index 62343aa..582fc7f 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated.pm @@ -449,8 +449,6 @@ inserted something and need to get a resultset including it, etc. =cut -use Benchmark; - sub execute_reliably { my ($self, $coderef, @args) = @_; diff --git a/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm b/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm index b766bed..2367d4a 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated/Replicant.pm @@ -74,6 +74,10 @@ sub debugobj { return shift->schema->storage->debugobj; } +=head1 ALSO SEE + +L<http://en.wikipedia.org/wiki/Replicant> + =head1 AUTHOR John Napiorkowski