X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FRowCountStatistics.pm;fp=lib%2FDBIx%2FClass%2FRowCountStatistics.pm;h=7e9413136f9913a8765a046b54194ccc1239b972;hb=03f37b20812418ebb5af6c3a62a76b5bbed4ba95;hp=75060c1e0ba157de9fe01835f2317a719c7d7dab;hpb=ef422264585fede849f59fbd5117674c10b405cf;p=dbsrgits%2FDBIx-Class-RowCountStatistics.git 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