Callback now gets args
Matt S Trout [Wed, 19 Jul 2006 22:29:59 +0000 (22:29 +0000)]
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;
     }