Subject: | Producer::PostgreSQL boolean size error |
PostgreSQL does not accept a size parameter for boolean types but
Producer::PostgreSQL does not understand this. The fix is trivial
though:
- undef @size if $data_type =~ m/(integer|smallint|bigint|
text)/;
+ undef @size if $data_type =~ m/(boolean|integer|smallint|
bigint|text)/;