From: Robert Sedlacek Date: Thu, 24 Sep 2015 00:28:11 +0000 (+0000) Subject: POD fixes X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-RowCountStatistics.git;a=commitdiff_plain;h=03f37b20812418ebb5af6c3a62a76b5bbed4ba95 POD fixes --- diff --git a/lib/DBIx/Class/RowCountStatistics.pm b/lib/DBIx/Class/RowCountStatistics.pm index 75060c1..7e94131 100644 --- a/lib/DBIx/Class/RowCountStatistics.pm +++ b/lib/DBIx/Class/RowCountStatistics.pm @@ -73,6 +73,11 @@ DBIx::Class::RowCountStatistics - Provide row-count statistics { cursor_class => 'DBIx::Class::RowCountStatistics' }, ); +=head1 WARNING + +This module overrides internal L functionality, and might +break with every update. + =head1 DESCRIPTION This L subclass allows you to log the @@ -89,13 +94,10 @@ If available on the L, this method will be called with the following signature: sub query_complete { - my ($self, $row_count, $sql, @bind_values) = @_; + my ($self, $row_count, $sql) = @_; ... } -B: The passing of the C<@bind_values> is currently not yet -implemented, and no values will be passed yet. - =head1 AUTHOR r.sedlacek@shadowcat.co.uk