projects
/
dbsrgits/SQL-Abstract.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
6438583
)
Strip some parenthesis for easier reading
Peter Rabbitson [Thu, 23 Apr 2009 22:16:41 +0000 (22:16 +0000)]
t/04modifiers.t
patch
|
blob
|
blame
|
history
diff --git
a/t/04modifiers.t
b/t/04modifiers.t
index
5be3098
..
b365443
100644
(file)
--- a/
t/04modifiers.t
+++ b/
t/04modifiers.t
@@
-155,7
+155,7
@@
my @and_or_tests = (
where => { x => {
-or => { '!=', 1, '>=', 2 }, -like => 'x%'
}},
- stmt => 'WHERE ( ( x LIKE ? AND ( x != ? OR x >= ? ) ) )',
+ stmt => 'WHERE x LIKE ? AND ( x != ? OR x >= ? )',
bind => [qw/x% 1 2/],
},