diff options
Diffstat (limited to 'src/backend/parser/analyze.c')
-rw-r--r-- | src/backend/parser/analyze.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/parser/analyze.c b/src/backend/parser/analyze.c index bd78e949853..cc569eddd56 100644 --- a/src/backend/parser/analyze.c +++ b/src/backend/parser/analyze.c @@ -288,17 +288,13 @@ transformStmt(ParseState *pstate, Node *parseTree) * Returns true if a snapshot must be set before doing parse analysis * on the given raw parse tree. * - * Classification here should match transformStmt(); but we also have to - * allow a NULL input (for Parse/Bind of an empty query string). + * Classification here should match transformStmt(). */ bool analyze_requires_snapshot(Node *parseTree) { bool result; - if (parseTree == NULL) - return false; - switch (nodeTag(parseTree)) { /* |