darold / ora2pg

Ora2Pg is a free tool used to migrate an Oracle database to a PostgreSQL compatible schema. It connects your Oracle database, scan it automatically and extracts its structure or data, it then generates SQL scripts that you can load into PostgreSQL.
http://www.ora2pg.com/
GNU General Public License v3.0
978 stars 341 forks source link

Fix validation of nullable boolean columns #1790

Closed ewoerner closed 4 weeks ago

ewoerner commented 4 weeks ago

In validation, only convert DBD::Pg 0 to 'f'. Previously, undef (SQL NULL) was also converted to 'f' which caused validation to fail for boolean columns with NULL values.

darold commented 4 weeks ago

Thanks!