From: Darold Gilles Date: Sun, 14 Feb 2016 09:24:32 +0000 (+0100) Subject: fix an other operator order issue. X-Git-Tag: v8.0~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6b700d869af28a8ddc31910aa3bedf5f81b9bcc;p=pgbadger fix an other operator order issue. --- diff --git a/pgbadger b/pgbadger index eea27ff..819bb87 100755 --- a/pgbadger +++ b/pgbadger @@ -11769,7 +11769,7 @@ sub build_log_line_prefix_regex | (?:\*=|\*<>|\*<=|\*>=|\*<|\*>) # composite type comparison operators | - (?:<>|<=>|>=|<=|==|=|!=|!|<<|>>|<|>|\|\||\||&&|&|-|\+|\*(?!/)|/(?!\*)|\%|~|\^|\?) # operators and tests + (?:<>|<=>|>=|<=|==|!=|=|!|<<|>>|<|>|\|\||\||&&|&|-|\+|\*(?!/)|/(?!\*)|\%|~|\^|\?) # operators and tests | [\[\]\(\),;.] # punctuation (parenthesis, comma) |