projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
45932d5
)
where_hashpair is better than recurse_where
op_op
Arthur Axel 'fREW' Schmidt [Sat, 29 Jan 2011 15:20:30 +0000 (09:20 -0600)]
lib/SQL/Abstract.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract.pm
b/lib/SQL/Abstract.pm
index
61b537b
..
eb50d98
100644
(file)
--- a/
lib/SQL/Abstract.pm
+++ b/
lib/SQL/Abstract.pm
@@
-1010,7
+1010,8
@@
sub _where_generic_FUNC {
return ($sql, @bind);
},
HASHREF => sub {
- $self->_recurse_where( $val );
+ my $method = $self->_METHOD_FOR_refkind("_where_hashpair", $val);
+ $self->$method('', $val);
}
});
push @all_sql, $sql;