aboutsummaryrefslogtreecommitdiff
path: root/projects/postgresql/fuzzer/simple_query_fuzzer.c
diff options
context:
space:
mode:
Diffstat (limited to 'projects/postgresql/fuzzer/simple_query_fuzzer.c')
-rw-r--r--projects/postgresql/fuzzer/simple_query_fuzzer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/postgresql/fuzzer/simple_query_fuzzer.c b/projects/postgresql/fuzzer/simple_query_fuzzer.c
index 3ba6b50ed..29c13623e 100644
--- a/projects/postgresql/fuzzer/simple_query_fuzzer.c
+++ b/projects/postgresql/fuzzer/simple_query_fuzzer.c
@@ -46,7 +46,7 @@ exec_simple_query(const char *query_string)
StartTransactionCommand();
oldcontext = MemoryContextSwitchTo(MessageContext);
- parsetree_list = raw_parser(query_string);
+ parsetree_list = raw_parser(query_string, RAW_PARSE_TYPE_NAME);
MemoryContextSwitchTo(oldcontext);
use_implicit_block = (list_length(parsetree_list) > 1);