Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4cae471

Browse files
committed
Fix backwards test in operator_precedence_warning logic.
Warnings about unary minus might have been wrong. It's a bitsurprising that nobody noticed yet ... probably the precedence-warningfeature hasn't really been used much in the field.Rikard FalkebornDiscussion:https://postgr.es/m/CADRDgG6fzA8A2oeygUw4=o7ywo4kvz26NxCSgpq22nMD73Bx4Q@mail.gmail.com
1 parent765525c commit4cae471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎src/backend/parser/parse_expr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3236,7 +3236,7 @@ operator_precedence_group(Node *node, const char **nodename)
32363236
*nodename=strVal(linitial(aexpr->name));
32373237
/* Ignore if op was always higher priority than IS-tests */
32383238
if (strcmp(*nodename,"+")==0||
3239-
strcmp(*nodename,"-"))
3239+
strcmp(*nodename,"-")==0)
32403240
group=0;
32413241
else
32423242
group=PREC_GROUP_PREFIX_OP;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp