From: Peter Rabbitson Date: Thu, 14 Oct 2010 04:18:30 +0000 (+0200) Subject: That's an embarrasing c/p :( X-Git-Tag: v0.08124~49 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=f3e9f0106fd3a446938e1a981704278922fcab2d;hp=4c633384a2afd15b77f6c5d46b9c7831feaa1272 That's an embarrasing c/p :( --- diff --git a/Changes b/Changes index 6408d9f..8da3ec5 100644 --- 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 diff --git a/lib/DBIx/Class/Storage/DBI/Replicated.pm b/lib/DBIx/Class/Storage/DBI/Replicated.pm index 2ac1d25..17936a7 100644 --- a/lib/DBIx/Class/Storage/DBI/Replicated.pm +++ b/lib/DBIx/Class/Storage/DBI/Replicated.pm @@ -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