restore -in dying to have tests clean before breaking it
Matt S Trout [Wed, 27 Mar 2019 02:43:24 +0000 (02:43 +0000)]
lib/SQL/Abstract.pm

index baf9bb8..ca4b54f 100644 (file)
@@ -39,6 +39,7 @@ our $AUTOLOAD;
 my @BUILTIN_SPECIAL_OPS = (
   {regex => qr/^ (?: not \s )? between $/ix, handler => sub { die "NOPE" }},
   {regex => qr/^ is (?: \s+ not )?     $/ix, handler => sub { die "NOPE" }},
+  {regex => qr/^ (?: not \s )? in      $/ix, handler => sub { die "NOPE" }},
 );
 
 #======================================================================