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

fixed warning about uninitialized use of #1675

Closed mgerhardy closed 10 months ago

mgerhardy commented 11 months ago

the variable is used in other scoped, too

maybe using

use warnings FATAL => 'all';
use strict;

is a good idea, as there are a lot of other warnings that might indicate bugs.