X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F05in_between.t;h=bb98f1175d1e14a4d5d4fb8a9363414feabf1162;hb=39bf6ceae5f7f2dcf8706d0cbad024e8532b8072;hp=3163aa69ead49869d94b16f5a4a12bb4df2372d7;hpb=8d8f6cc8c8edc9caa6a2c672dc046a1162ebf996;p=scpubgit%2FQ-Branch.git diff --git a/t/05in_between.t b/t/05in_between.t index 3163aa6..bb98f11 100644 --- a/t/05in_between.t +++ b/t/05in_between.t @@ -307,6 +307,18 @@ my @in_between_tests = ( bind => [ 2, 3, 4 ], test => 'Top level -between with useful LHS', }, + { + where => { + -in => [ + { -tuple => [ 'x', 'y' ] }, + { -tuple => [ 1, 2 ] }, + { -tuple => [ 3, 4 ] }, + ], + }, + stmt => ' WHERE (x, y) IN ((?, ?), (?, ?))', + bind => [ 1..4 ], + test => 'Complex IN', + }, ); for my $case (@in_between_tests) {