That's an embarrasing c/p :(
Peter Rabbitson [Thu, 14 Oct 2010 04:18:30 +0000 (06:18 +0200)]
Changes
lib/DBIx/Class/Storage/DBI/Replicated.pm

diff --git a/Changes b/Changes
index 6408d9f..8da3ec5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -57,6 +57,7 @@ Revision history for DBIx::Class
         - Fixed t/inflate/datetime_pg.t failures due to a low dependency
           on DateTime::Format::Pg (RT#61503)
         - Fix dirtyness detection on source-less objects
+        - Fix incorrect limit_dialect assignment on Replicated pool members
 
     * Misc
         - Refactored capability handling in Storage::DBI, allows for
index 2ac1d25..17936a7 100644 (file)
@@ -754,7 +754,7 @@ sub limit_dialect {
   foreach my $source ($self->all_storages) {
     $source->limit_dialect(@_);
   }
-  return $self->master->quote_char;
+  return $self->master->limit_dialect;
 }
 
 =head2 quote_char