From: Rafael Kitover Date: Mon, 5 Apr 2010 19:55:44 +0000 (-0400) Subject: test more numeric/decimal precisions for Firebird X-Git-Tag: 0.06000~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=commitdiff_plain;h=0ae64d34318f8f182febe1847166fd397dae3966 test more numeric/decimal precisions for Firebird --- diff --git a/t/18firebird_common.t b/t/18firebird_common.t index 49bf67f..d154cbd 100644 --- a/t/18firebird_common.t +++ b/t/18firebird_common.t @@ -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] },