diff --git a/postgresql/postgresql-lib.pl b/postgresql/postgresql-lib.pl index f8ac3f57f..a5de1a21b 100755 --- a/postgresql/postgresql-lib.pl +++ b/postgresql/postgresql-lib.pl @@ -1013,6 +1013,9 @@ if ($info->{'create'} =~ /using\s+(\S+)\s/) { } if ($info->{'create'} =~ /\((.*)\)/) { $info->{'cols'} = [ split(/\s*,\s*/, $1) ]; + foreach my $c (@{$info->{'cols'}}) { + $c =~ s/^"(.*)"$/$1/; + } } return $info;