summaryrefslogtreecommitdiff
path: root/databases/p5-SQL-Translator/files/5.005_03-patch-lib::SQL::Translator::Parser::xSV.pm
blob: b46ac635ca6a61b62a3b2b5da5170c3ba1a2d838 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- lib/SQL/Translator/Parser/xSV.pm.orig	Sun May  9 21:39:20 2004
+++ lib/SQL/Translator/Parser/xSV.pm	Sun May  9 21:39:50 2004
@@ -174,9 +174,9 @@
                 $size = [ $size->[0] + $size->[1] ];
             }
 
-            my $field = $table->get_field( $field );
-            $field->size( $size );
-            $field->data_type( $data_type );
+            my $f = $table->get_field( $field );
+            $f->size( $size );
+            $f->data_type( $data_type );
         }
     }