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;