From: Matt S Trout Date: Wed, 27 Mar 2019 02:43:24 +0000 (+0000) Subject: restore -in dying to have tests clean before breaking it X-Git-Tag: v1.90_01~293 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=909ec5ec9e1626ba60a83cfd58f1f6b1bf99eb15;p=dbsrgits%2FSQL-Abstract.git restore -in dying to have tests clean before breaking it --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index baf9bb8..ca4b54f 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -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" }}, ); #======================================================================