Avoid warning about exiting sub with next
Aaron Schrab [Thu, 12 May 2011 17:43:27 +0000 (13:43 -0400)]
lib/SQL/Translator/Producer/PostgreSQL.pm

index 5d8a9aa..025ab73 100644 (file)
@@ -552,7 +552,7 @@ sub create_index
 
     my $type = $index->type || NORMAL;
     my @fields     =  $index->fields;
-    next unless @fields;
+    return unless @fields;
 
     my $def_start = qq[CONSTRAINT ${qf}$name${qf} ];
     my $field_names = '(' . join(", ", (map { $_ =~ /\(.*\)/ ? $_ : ($qf . $_ . $qf ) } @fields)) . ')';