From: Matt S Trout Date: Sun, 31 Jul 2011 02:49:39 +0000 (+0000) Subject: remove builtin special ops; handled elsewhere X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=33ec00da442534d5e4d018073be0e85766fd73e3;p=dbsrgits%2FSQL-Abstract.git remove builtin special ops; handled elsewhere --- diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index a0bd9fd..797212e 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -28,12 +28,7 @@ our $AUTOLOAD; # special operators (-in, -between). May be extended/overridden by user. # See section WHERE: BUILTIN SPECIAL OPERATORS below for implementation -my @BUILTIN_SPECIAL_OPS = ( - {regex => qr/^ (?: not \s )? between $/ix, handler => '_where_field_BETWEEN'}, - {regex => qr/^ (?: not \s )? in $/ix, handler => '_where_field_IN'}, - {regex => qr/^ ident $/ix, handler => '_where_op_IDENT'}, - {regex => qr/^ value $/ix, handler => '_where_op_VALUE'}, -); +my @BUILTIN_SPECIAL_OPS = (); # unaryish operators - key maps to handler my @BUILTIN_UNARY_OPS = (