Skip Menu |

This queue is for tickets about the Class-DBI-FormBuilder CPAN distribution.

Report information
The Basics
Id: 20156
Status: new
Priority: 0/
Queue: Class-DBI-FormBuilder

People
Owner: Nobody in particular
Requestors: santini [...] zadi.de
Cc:
AdminCc:

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



Subject: is_nullable vs. nullable
Class/DBI/FormBuilder.pm: row 2038: push @options, [ undef, 'n/a' ] if $column_meta and $column_meta->is_nullable; -- should be: push @options, [ undef, 'n/a' ] if $column_meta and $column_meta->nullable; because is_nullable returns 'YES' or 'NO' and not true or false (0|1) Same for row 1806 my $nullable = $me->table_meta($them)->column($field)->is_nullable; -- should be my $nullable = $me->table_meta($them)->column($field)->nullable;