From: Darold Gilles Date: Thu, 9 Apr 2015 17:33:51 +0000 (+0200) Subject: Fix bug in SQL beautifier which removed operator. Thanks to Thomas Reiss for the... X-Git-Tag: v6.4~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31da0611f101fe9920675b7d737d2ed32852115b;p=pgbadger Fix bug in SQL beautifier which removed operator. Thanks to Thomas Reiss for the report. --- diff --git a/pgbadger b/pgbadger index 690ca28..9418313 100755 --- a/pgbadger +++ b/pgbadger @@ -10975,6 +10975,7 @@ sub build_log_line_prefix_regex | (?:<>|<=>|>=|<=|==|=|!=|!|<<|>>|<|>|\|\||\||&&|&|-|\+|\*(?!/)|/(?!\*)|\%|~|\^|\?) # operators and tests + | (?:\#|\@\-\@|\@\@|\#\#|<\->|\&<|\&>|<<\||\|>>|\&<\||\|\&>|<\^|>\^|\?\#|\?\-|\?\||\?\-\||\?\|\||\@>|<\@|\~=) # Geometric Operators |