Subject: | PostgreSQL numeric column documentation has stringified ref |
Problem: auto-generated document for numeric columns has stringified
array reference.
For PostgreSQL 8.4.2 and DCSL 5.003, create this table:
create table foo (
id int primary key,
some_val numeric(2,2)
);
And use the following code to dump it:
use DBIx::Class::Schema::Loader 'make_schema_at';
make_schema_at(
'My::Schema',
{
debug => 1,
dump_directory => './test_lib',
},
[ 'dbi:Pg:dbname="veure"', 'veure_user', '***' ],
);
The documentation for some_val is:
=head2 some_val
data_type: numeric
default_value: undef
is_nullable: 1
size: ARRAY(0x100c3b8c8)
Cheers,
Ovid