pass -op expansion to expand_op handler, fix in
[scpubgit/Q-Branch.git] / t / 05in_between.t
index 9d168c4..5bcbe55 100644 (file)
@@ -325,6 +325,13 @@ my @in_between_tests = (
     bind => [],
     test => 'Top level -is ok',
   },
+  {
+    where => { -op => [ in => x => 1, 2, 3 ] },
+    stmt => ' WHERE x IN (?, ?, ?)',
+    bind => [ 1, 2, 3 ],
+    test => 'Raw -op passes through correctly'
+  },
+
 );
 
 for my $case (@in_between_tests) {