fix DBI binding for negative integers, shoudl fix CCH update, RT#14243
authorivan <ivan>
Thu, 29 Sep 2011 05:54:25 +0000 (05:54 +0000)
committerivan <ivan>
Thu, 29 Sep 2011 05:54:25 +0000 (05:54 +0000)
FS/FS/Record.pm

index e5bfb0a..ad26d60 100644 (file)
@@ -265,7 +265,7 @@ sub _bind_type {
 
   my $bind_type = { TYPE => SQL_VARCHAR };
 
-  if ( $type =~ /(big)?(int|serial)/i && $value =~ /^\d+(\.\d+)?$/ ) {
+  if ( $type =~ /(big)?(int|serial)/i && $value =~ /^-?\d+(\.\d+)?$/ ) {
 
     $bind_type = { TYPE => SQL_INTEGER };