test more numeric/decimal precisions for Firebird
Rafael Kitover [Mon, 5 Apr 2010 19:55:44 +0000 (15:55 -0400)]
t/18firebird_common.t

index 49bf67f..d154cbd 100644 (file)
@@ -82,6 +82,12 @@ my $tester = dbixcsl_common_tests->new(
         'dec(3,3)'     => { data_type => 'decimal', size => [3,3] },
         'numeric(3,3)' => { data_type => 'numeric', size => [3,3] },
 
+        'decimal(6,3)' => { data_type => 'decimal', size => [6,3] },
+        'numeric(6,3)' => { data_type => 'numeric', size => [6,3] },
+
+        'decimal(12,3)' => { data_type => 'decimal', size => [12,3] },
+        'numeric(12,3)' => { data_type => 'numeric', size => [12,3] },
+
         'decimal(18,18)' => { data_type => 'decimal', size => [18,18] },
         'dec(18,18)'     => { data_type => 'decimal', size => [18,18] },
         'numeric(18,18)' => { data_type => 'numeric', size => [18,18] },