[Bast-commits] r5969 - SQL-Abstract/1.x/branches/and_or/t

ribasushi at dev.catalyst.perl.org ribasushi at dev.catalyst.perl.org
Thu Apr 23 22:16:42 GMT 2009


Author: ribasushi
Date: 2009-04-23 23:16:41 +0100 (Thu, 23 Apr 2009)
New Revision: 5969

Modified:
   SQL-Abstract/1.x/branches/and_or/t/04modifiers.t
Log:
Strip some parenthesis for easier reading

Modified: SQL-Abstract/1.x/branches/and_or/t/04modifiers.t
===================================================================
--- SQL-Abstract/1.x/branches/and_or/t/04modifiers.t	2009-04-23 22:03:03 UTC (rev 5968)
+++ SQL-Abstract/1.x/branches/and_or/t/04modifiers.t	2009-04-23 22:16:41 UTC (rev 5969)
@@ -155,7 +155,7 @@
     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/],
   },
 




More information about the Bast-commits mailing list