projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4e56f67
)
eliminate passing of unused logic op name
Matt S Trout [Mon, 25 Mar 2019 01:59:57 +0000 (
01:59
+0000)]
lib/SQL/Abstract.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract.pm
b/lib/SQL/Abstract.pm
index
1abaac5
..
ffd4c9e
100644
(file)
--- a/
lib/SQL/Abstract.pm
+++ b/
lib/SQL/Abstract.pm
@@
-831,7
+831,7
@@
sub _expand_andor {
if (ref($v) eq 'HASH') {
return +{ -op => [
$logop,
- map $self->_expand_expr({ $_ => $v->{$_} }, $logop),
+ map $self->_expand_expr({ $_ => $v->{$_} }),
sort keys %$v
] };
}