Update settings.md

This commit is contained in:
Denny Crane 2024-07-08 09:30:25 -03:00 committed by GitHub
parent 32ef043b8f
commit 486ac7f287
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1170,6 +1170,10 @@ Data in the VALUES clause of INSERT queries is processed by a separate stream pa
Default value: 262144 (= 256 KiB).
:::note
`max_query_size` cannot be set within an SQL query (e.g., `SELECT now() SETTINGS max_query_size=10000`) because ClickHouse needs to allocate a buffer to parse the query, and this buffer size is determined by the `max_query_size` setting, which must be configured before the query is executed.
:::
## max_parser_depth {#max_parser_depth}
Limits maximum recursion depth in the recursive descent parser. Allows controlling the stack size.