File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 4242 {{- end}}
4343 shutdown_timeout = {{ .Values.shutdownTimeout | default "60_000" }}
4444 prepared_statements = {{ .Values.preparedStatements | default "extended" | quote }}
45+ {{- with .Values.queryParser }}
46+ query_parser = {{ . | quote }}
47+ {{- else }}
4548 {{- with .Values.queryParserEnabled }}
4649 query_parser_enabled = {{ . }}
4750 {{- end }}
51+ {{- end }}
4852 {{- if .Values.preparedStatementsLimit }}
4953 prepared_statements_limit = {{ .Values.preparedStatementsLimit }}
5054 {{- end}}
Original file line number Diff line number Diff line change @@ -388,3 +388,11 @@ queryStats:
388388# tcpTime: 7200
389389# tcpInterval: 75
390390# tcpRetries: 9
391+
392+ # Query parser configuration
393+ # queryParser controls whether the query parser is enabled
394+ # Valid values: "auto", "on", "off"
395+ # queryParser: "auto"
396+
397+ # queryParserEnabled is DEPRECATED - use queryParser instead
398+ # queryParserEnabled: true
You can’t perform that action at this time.
0 commit comments