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: v2.000000~3^2~314 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=23a9b08884504d7d51dc9ce581a99479ba4016a9;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 17dc76f..2e5ee79 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" }}, ); #======================================================================