needed to tighten up regex added in last commit
John Goulah [Mon, 1 Dec 2008 21:19:50 +0000 (21:19 +0000)]
lib/SQL/Translator/Producer.pm

index 3fccfc9..9f4d3d0 100644 (file)
@@ -51,7 +51,7 @@ sub _apply_default_value {
     }
   }
 
-  my $qc = (grep m/$default/, @noquote)?"":"'"; 
+  my $qc = (grep m/^$default$/, @noquote)?"":"'"; 
   if (ref $default) {
       $$field_ref .= " DEFAULT $$default";
   } else {