From: Peter Rabbitson Date: Sun, 29 Mar 2009 08:33:45 +0000 (+0000) Subject: This todo is active on the cpan 1.51 release, still needs resolving thus leaving... X-Git-Tag: v1.70~185 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=222c95054517efcdeb0d49806f7c96ed646633fb;hp=ef8c0c94acc87bbd566753f3d9b2204b68862b48;p=dbsrgits%2FSQL-Abstract.git This todo is active on the cpan 1.51 release, still needs resolving thus leaving as failing --- diff --git a/t/04modifiers.t b/t/04modifiers.t index 9a3349d..1d73dff 100755 --- a/t/04modifiers.t +++ b/t/04modifiers.t @@ -145,6 +145,7 @@ my @and_or_tests = ( }, # test column multi-cond in arrayref (even more useful) { +# todo => 'Clarify semantics in 1.52', where => { x => { '!=' => [ -and => (1 .. 3) ] } }, stmt => 'WHERE x != ? AND x != ? AND x != ?', bind => [1..3], @@ -152,6 +153,7 @@ my @and_or_tests = ( # the -or should affect only the inner hashref, as we are not in an outer arrayref { +# todo => 'Clarify semantics in 1.52', where => { x => { -or => { '!=', 1, '>=', 2 }, -like => 'x%' }},