aboutsummaryrefslogtreecommitdiff
path: root/src/include/parser/parse_expr.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2020-12-08 16:29:52 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2020-12-08 16:29:52 -0500
commita676386b58bf7cd2df81baa43eb1713d3a2ec055 (patch)
tree74f3250870d97444fe6fb8ee01907ad8efa68bb5 /src/include/parser/parse_expr.h
parent4f5760d4afa9423fe4d38e4cbec48bf5e793e7e5 (diff)
downloadpostgresql-a676386b58bf7cd2df81baa43eb1713d3a2ec055.tar.gz
postgresql-a676386b58bf7cd2df81baa43eb1713d3a2ec055.zip
Remove operator_precedence_warning.
This GUC was always intended as a temporary solution to help with finding 9.4-to-9.5 migration issues. Now that all pre-9.5 branches are out of support, and 9.5 will be too before v14 is released, it seems like it's okay to drop it. Doing so allows removal of several hundred lines of poorly-tested code in parse_expr.c, which have been a fertile source of bugs when people did use this. Discussion: https://postgr.es/m/2234320.1607117945@sss.pgh.pa.us
Diffstat (limited to 'src/include/parser/parse_expr.h')
-rw-r--r--src/include/parser/parse_expr.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/parser/parse_expr.h b/src/include/parser/parse_expr.h
index b01d3b7dec5..5668f88302e 100644
--- a/src/include/parser/parse_expr.h
+++ b/src/include/parser/parse_expr.h
@@ -16,7 +16,6 @@
#include "parser/parse_node.h"
/* GUC parameters */
-extern bool operator_precedence_warning;
extern bool Transform_null_equals;
extern Node *transformExpr(ParseState *pstate, Node *expr, ParseExprKind exprKind);