X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=blobdiff_plain;f=t%2F18firebird_common.t;h=a4b3ead39c0687298df8970c3c9df5b4ac4a5ee3;hp=5befe43c26c8c43890b0a2f7c30ad467b55f4c0b;hb=8ec0dd691ba3dfebbc9642e56e0157ea3d5408f3;hpb=dd87d4c4612dbc0120da1e1826cb3f09c15fbcdb diff --git a/t/18firebird_common.t b/t/18firebird_common.t index 5befe43..a4b3ead 100644 --- a/t/18firebird_common.t +++ b/t/18firebird_common.t @@ -59,18 +59,17 @@ my $tester = dbixcsl_common_tests->new( # http://www.ibphoenix.com/downloads/60DataDef.zip # # Numeric types - # XXX rewrite low precision floats to 'real' 'smallint' => { data_type => 'smallint' }, 'int' => { data_type => 'integer' }, 'integer' => { data_type => 'integer' }, 'bigint' => { data_type => 'bigint' }, - 'float' => { data_type => 'float' }, + 'float' => { data_type => 'real' }, 'double precision' => { data_type => 'double precision' }, - 'real' => { data_type => 'float' }, + 'real' => { data_type => 'real' }, - 'float(2)' => { data_type => 'float' }, - 'float(7)' => { data_type => 'float' }, + 'float(2)' => { data_type => 'real' }, + 'float(7)' => { data_type => 'real' }, 'float(8)' => { data_type => 'double precision' }, 'decimal' => { data_type => 'decimal' },