Skip to content

Commit

Permalink
Allow NUMBER with precision to be replaced as boolean. Thanks to Silv…
Browse files Browse the repository at this point in the history
…an Auer for the report.
  • Loading branch information
darold committed Mar 16, 2016
1 parent 1e2b4f5 commit 6f8a065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Ora2Pg.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9204,7 +9204,7 @@ sub read_config
$AConfig{$var}{$old} = $new;
}
} elsif ($var eq 'REPLACE_AS_BOOLEAN') {
my @replace_boolean = split(/[\s,;]+/, $val);
my @replace_boolean = split(/[\s;]+/, $val);
foreach my $r (@replace_boolean) {
my ($table, $col) = split(/:/, $r);
push(@{$AConfig{$var}{uc($table)}}, uc($col));
Expand Down

0 comments on commit 6f8a065

Please sign in to comment.