projects
/
dbsrgits/DBIx-Data-Store-old.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8834be3
)
make Call command not return anything so _merge doesn't try and merge the row count
markie [Mon, 1 Mar 2010 03:11:07 +0000 (19:11 -0800)]
lib/DBIx/Data/Store/Command/Call.pm
patch
|
blob
|
blame
|
history
lib/Data/Perl/Stream/Array.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Data/Store/Command/Call.pm
b/lib/DBIx/Data/Store/Command/Call.pm
index
4436151
..
08bc398
100644
(file)
--- a/
lib/DBIx/Data/Store/Command/Call.pm
+++ b/
lib/DBIx/Data/Store/Command/Call.pm
@@
-5,6
+5,7
@@
use Method::Signatures::Simple;
method execute {
$self->_new_active_sth->rows;
+ return
}
with 'DBIx::Data::Store::Command';
diff --git
a/lib/Data/Perl/Stream/Array.pm
b/lib/Data/Perl/Stream/Array.pm
index
8d4f325
..
cb0ccf5
100644
(file)
--- a/
lib/Data/Perl/Stream/Array.pm
+++ b/
lib/Data/Perl/Stream/Array.pm
@@
-7,8
+7,6
@@
has _array => (is => 'rw', required => 1, init_arg => 'array');
method BUILD { $self->_array([ @{$self->_array} ]) }
-use Devel::Dwarn;
-
method next {
my $ary = $self->_array;
return unless @$ary;