]> git.pld-linux.org Git - packages/perl-DBD-SQLite.git/blob - data_type.patch
66807a02550f250bfa226f2f723c48e1aa042b76
[packages/perl-DBD-SQLite.git] / data_type.patch
1 --- DBD-SQLite-1.70/t/51_table_column_metadata.t~       2021-01-17 19:28:36.000000000 +0100
2 +++ DBD-SQLite-1.70/t/51_table_column_metadata.t        2022-03-02 07:16:54.014601031 +0100
3 @@ -19,7 +19,7 @@
4                 my $data = $dbh->$call_func(undef, 'foo', 'id', 'table_column_metadata');
5                 ok $data && ref $data eq ref {}, "got a metadata";
6                 ok $data->{auto_increment}, "id is auto incremental";
7 -               is $data->{data_type} => 'integer', "data type is correct";
8 +               is $data->{data_type} => 'INTEGER', "data type is correct";
9                 ok $data->{primary}, "id is a primary key";
10                 ok !$data->{not_null}, "id is not null";
11         }
This page took 0.05641 seconds and 2 git commands to generate.