-
- Downloads
Avoid recursion when processing simple lists of AND'ed or OR'ed clauses.
Since most of the system thinks AND and OR are N-argument expressions anyway, let's have the grammar generate a representation of that form when dealing with input like "x AND y AND z AND ...", rather than generating a deeply-nested binary tree that just has to be flattened later by the planner. This avoids stack overflow in parse analysis when dealing with queries having more than a few thousand such clauses; and in any case it removes some rather unsightly inconsistencies, since some parts of parse analysis were generating N-argument ANDs/ORs already. It's still possible to get a stack overflow with weirdly parenthesized input, such as "x AND (y AND (z AND ( ... )))", but such cases are not mainstream usage. The maximum depth of parenthesization is already limited by Bison's stack in such cases, anyway, so that the limit is probably fairly platform-independent. Patch originally by Gurjeet Singh, heavily revised by me
Showing
- contrib/postgres_fdw/deparse.c 0 additions, 3 deletionscontrib/postgres_fdw/deparse.c
- src/backend/nodes/nodeFuncs.c 8 additions, 0 deletionssrc/backend/nodes/nodeFuncs.c
- src/backend/nodes/outfuncs.c 0 additions, 9 deletionssrc/backend/nodes/outfuncs.c
- src/backend/optimizer/prep/prepjointree.c 3 additions, 3 deletionssrc/backend/optimizer/prep/prepjointree.c
- src/backend/optimizer/prep/prepqual.c 6 additions, 7 deletionssrc/backend/optimizer/prep/prepqual.c
- src/backend/optimizer/util/clauses.c 9 additions, 6 deletionssrc/backend/optimizer/util/clauses.c
- src/backend/parser/gram.y 75 additions, 35 deletionssrc/backend/parser/gram.y
- src/backend/parser/parse_clause.c 10 additions, 11 deletionssrc/backend/parser/parse_clause.c
- src/backend/parser/parse_expr.c 41 additions, 57 deletionssrc/backend/parser/parse_expr.c
- src/include/nodes/parsenodes.h 0 additions, 3 deletionssrc/include/nodes/parsenodes.h
- src/include/nodes/primnodes.h 2 additions, 6 deletionssrc/include/nodes/primnodes.h
- src/test/regress/expected/rules.out 1 addition, 1 deletionsrc/test/regress/expected/rules.out
Loading
Please register or sign in to comment