diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/spi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index 2da1cac3e21..f3da2ddd080 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -2367,6 +2367,9 @@ _SPI_error_callback(void *arg) const char *query = (const char *) arg; int syntaxerrposition; + if (query == NULL) /* in case arg wasn't set yet */ + return; + /* * If there is a syntax error position, convert to internal syntax error; * otherwise treat the query as an item of context stack |