PT-1570 pt-archiver fails to detect columns with the word GENERATED as part of the comment

This commit is contained in:
Carlos Salguero
2018-06-14 14:15:20 -03:00
parent accdd7712b
commit 602c1f0ea2
5 changed files with 92 additions and 1 deletions

View File

@@ -220,7 +220,7 @@ sub remove_quoted_text {
my ($string) = @_;
$string =~ s/[^\\]`[^`]*[^\\]`//g;
$string =~ s/[^\\]"[^"]*[^\\]"//g;
$string =~ s/[^\\]"[^"]*[^\\]"//g;
$string =~ s/[^\\]'[^']*[^\\]'//g;
return $string;
}