Subject: | Use of uninitialized value in numeric gt |
Date: | Sat, 15 Dec 2018 08:51:50 +0100 |
To: | bug-SQL-Type-Guess [...] rt.cpan.org |
From: | Matthäus Kiem <matthaeuskiem [...] gmail.com> |
Hello!
use SQL::Type::Guess;
my @table = (
[ 'city', 'state' ],
[ 'Seattle', 'WA' ],
[ undef, 'WA' ],
);
my $header = shift @table;
my @aoh;
for my $record ( @table ) {
push @aoh, { map { $header->[$_] => $record->[$_] } 0 ..
$#{$record} };
}
my $g = SQL::Type::Guess->new();
$g->guess( @aoh );
# Use of uninitialized value in numeric gt (>) at ...
/SQL/Type/Guess.pm line 155.
Matthäus
Message body is not shown because sender requested not to inline it.