Skip Menu |

This queue is for tickets about the SQL-Type-Guess CPAN distribution.

Report information
The Basics
Id: 128024
Status: resolved
Priority: 0/
Queue: SQL-Type-Guess

People
Owner: Nobody in particular
Requestors: matthaeuskiem [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



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.

Thank you very much for the bug report and the included bug fix! I've released 0.05 which includes the fix!