Skip Menu |

This queue is for tickets about the AnyData CPAN distribution.

Report information
The Basics
Id: 28006
Status: resolved
Priority: 0/
Queue: AnyData

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

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



Subject: adDump writes out null cells as empty strings
The incriminated block seems to be (in AnyData::adDump sub): while (my $row = each %$table) { my @row = map {$row->{$_} || ''} @cols; for (@row) { print "[$_]"; } print "\n"; } Workaround is to replace first block line with: my @row = map {defined $row->{$_} ? $row->{$_} : ''} @cols;
I've applied the patch and it should be resolved in 0.11 Cheers Sven