Add setting allow_experimental_partial_result to doc

This commit is contained in:
vdimir 2023-09-11 15:59:35 +00:00
parent 3f3feea0b7
commit 9b001e5092
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -4659,6 +4659,10 @@ SELECT toFloat64('1.7091'), toFloat64('1.5008753E7') SETTINGS precise_float_pars
Interval (in milliseconds) for sending updates with partial data about the result table to the client (in interactive mode) during query execution. Setting to 0 disables partial results. Only supported for single-threaded GROUP BY without key, ORDER BY, LIMIT and OFFSET.
:::note
It's an experimental feature. Enable `allow_experimental_partial_result` setting first to use it.
:::
## max_rows_in_partial_result
Maximum rows to show in the partial result after every real-time update while the query runs (use partial result limit + OFFSET as a value in case of OFFSET in the query).