POD fixes
Robert Sedlacek [Thu, 24 Sep 2015 00:28:11 +0000 (00:28 +0000)]
lib/DBIx/Class/RowCountStatistics.pm

index 75060c1..7e94131 100644 (file)
@@ -73,6 +73,11 @@ DBIx::Class::RowCountStatistics - Provide row-count statistics
         { cursor_class => 'DBIx::Class::RowCountStatistics' },
     );
 
+=head1 WARNING
+
+This module overrides internal L<DBIx::Class> functionality, and might
+break with every update.
+
 =head1 DESCRIPTION
 
 This L<DBIx::Class::Storage::DBI::Cursor> subclass allows you to log the
@@ -89,13 +94,10 @@ If available on the L<DBIx::Class::Storage/debugobj>, 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<Note>: 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