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

index b67f15c..e52d094 100644 (file)
@@ -274,7 +274,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 };