1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

removed a type test in rt_40594_nullable.t

This commit is contained in:
Kenichi Ishigaki 2013-09-04 12:09:09 +09:00
parent 7c811dd4f4
commit 4af5487ca1

View file

@ -17,7 +17,7 @@ BEGIN {
}
}
plan tests => 7;
plan tests => 6;
my $dbh = connect_ok();
@ -28,7 +28,6 @@ ok $sth->execute;
my $expected = {
NUM_OF_FIELDS => 4,
NAME_lc => [qw/id col1 col2 col3/],
TYPE => [qw/INTEGER varchar(2) varchar(2) char(2)/],
NULLABLE => [qw/0 0 1 0/],
};