better type info for Sybase ASE and better data type tests
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 12pg_common.t
index 157decf..723fc5a 100644 (file)
@@ -16,47 +16,47 @@ my $tester = dbixcsl_common_tests->new(
     user        => $user,
     password    => $password,
     data_types  => {
-       'bigint'    => { data_type => 'bigint' },
-       'int8'      => { data_type => 'bigint' },
-       'bigserial' => { data_type => 'bigint', is_auto_increment => 1 },
-       'serial8'   => { data_type => 'bigint', is_auto_increment => 1 },
-       'bit'       => { data_type => 'bit' },
-       'boolean'   => { data_type => 'boolean' },
-       'bool'      => { data_type => 'boolean' },
-       'box'       => { data_type => 'box' },
-       'bytea'     => { data_type => 'bytea' },
-       'cidr'      => { data_type => 'cidr' },
-       'circle'    => { data_type => 'circle' },
-       'date'      => { data_type => 'date' },
+       bigint    => { data_type => 'bigint' },
+       int8      => { data_type => 'bigint' },
+       bigserial => { data_type => 'bigint', is_auto_increment => 1 },
+       serial8   => { data_type => 'bigint', is_auto_increment => 1 },
+       bit       => { data_type => 'bit' },
+       boolean   => { data_type => 'boolean' },
+       bool      => { data_type => 'boolean' },
+       box       => { data_type => 'box' },
+       bytea     => { data_type => 'bytea' },
+       cidr      => { data_type => 'cidr' },
+       circle    => { data_type => 'circle' },
+       date      => { data_type => 'date' },
        'double precision' => { data_type => 'double precision' },
-       'float8'      => { data_type => 'double precision' },
-       'inet'        => { data_type => 'inet' },
-       'integer'     => { data_type => 'integer' },
-       'int'         => { data_type => 'integer' },
-       'int4'        => { data_type => 'integer' },
-       'interval'    => { data_type => 'interval' },
+       float8      => { data_type => 'double precision' },
+       inet        => { data_type => 'inet' },
+       integer     => { data_type => 'integer' },
+       int         => { data_type => 'integer' },
+       int4        => { data_type => 'integer' },
+       interval    => { data_type => 'interval' },
        'interval(2)' => { size => 2, data_type => 'interval' },
-       'line'        => { data_type => 'line' },
-       'lseg'        => { data_type => 'lseg' },
-       'macaddr'     => { data_type => 'macaddr' },
-       'money'       => { data_type => 'money' },
-       'path'        => { data_type => 'path' },
-       'point'       => { data_type => 'point' },
-       'polygon'     => { data_type => 'polygon' },
-       'real'        => { data_type => 'real' },
-       'float4'      => { data_type => 'real' },
-       'smallint'    => { data_type => 'smallint' },
-       'int2'        => { data_type => 'smallint' },
-       'serial'      => { data_type => 'integer', is_auto_increment => 1 },
-       'serial4'     => { data_type => 'integer', is_auto_increment => 1 },
-       'text'        => { data_type => 'text' },
-       'time'        => { data_type => 'time without time zone' },
+       line        => { data_type => 'line' },
+       lseg        => { data_type => 'lseg' },
+       macaddr     => { data_type => 'macaddr' },
+       money       => { data_type => 'money' },
+       path        => { data_type => 'path' },
+       point       => { data_type => 'point' },
+       polygon     => { data_type => 'polygon' },
+       real        => { data_type => 'real' },
+       float4      => { data_type => 'real' },
+       smallint    => { data_type => 'smallint' },
+       int2        => { data_type => 'smallint' },
+       serial      => { data_type => 'integer', is_auto_increment => 1 },
+       serial4     => { data_type => 'integer', is_auto_increment => 1 },
+       text        => { data_type => 'text' },
+       time        => { data_type => 'time without time zone' },
        'time(2)'     => { size => 2, data_type => 'time without time zone' },
        'time without time zone'         => { data_type => 'time without time zone' },
        'time(2) without time zone'      => { size => 2, data_type => 'time without time zone' },
        'time with time zone'            => { data_type => 'time with time zone' },
        'time(2) with time zone'         => { size => 2, data_type => 'time with time zone' },
-       'timestamp'                      => { data_type => 'timestamp without time zone' },
+       timestamp                        => { data_type => 'timestamp without time zone' },
        'timestamp(2)'                   => { size => 2, data_type => 'timestamp without time zone' },
        'timestamp without time zone'    => { data_type => 'timestamp without time zone' },
        'timestamp(2) without time zone' => { size => 2, data_type => 'timestamp without time zone' },
@@ -70,11 +70,11 @@ my $tester = dbixcsl_common_tests->new(
        'char(2)'                        => { size => 2, data_type => 'character' },
        'numeric(6, 3)'                  => { size => [6,3], data_type => 'numeric' },
        'decimal(6, 3)'                  => { size => [6,3], data_type => 'numeric' },
-        'numeric'                        => { data_type => 'numeric' },
-        'decimal'                        => { data_type => 'numeric' },
+        numeric                          => { data_type => 'numeric' },
+        decimal                          => { data_type => 'numeric' },
         'float(24)'                      => { data_type => 'real' },
         'float(53)'                      => { data_type => 'double precision' },
-        'float'                          => { data_type => 'double precision' },
+        float                            => { data_type => 'double precision' },
     },
     extra       => {
         create => [