Callback now gets args
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / Statistics.pm
index 60b59cd..d795490 100644 (file)
@@ -87,7 +87,7 @@ sub query_start {
 
     if(defined($self->callback())) {
       $string =~ m/^(\w+)/;
-      $self->callback()->($1, $string);
+      $self->callback()->($1, $string, @_);
       return;
     }