projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
af642ff
)
still have to follow the rhs
Matt S Trout [Sun, 29 Sep 2019 01:17:10 +0000 (
01:17
+0000)]
lib/SQL/Abstract.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Abstract.pm
b/lib/SQL/Abstract.pm
index
469b2b6
..
7545a3c
100644
(file)
--- a/
lib/SQL/Abstract.pm
+++ b/
lib/SQL/Abstract.pm
@@
-1302,7
+1302,7
@@
sub _expand_between {
return +{ -op => [
$op,
$self->expand_expr(ref($k) ? $k : { -ident => $k }),
- @rhs
+ map $self->expand_expr($_, -value), @rhs
] }
}