Apply suggestions from code review

Co-authored-by: Anton Popov <pad11rus@gmail.com>
This commit is contained in:
gyuton 2021-10-27 16:17:56 +03:00 committed by GitHub
parent 901e5170a1
commit 456d548b6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -3845,12 +3845,12 @@ Default value: `16`.
## wait_for_async_insert {#wait-for-async-insert}
Enables or disables waiting for processing of asynchronous insertion. If enabled, client will return `OK` only after the data is inserted. Otherwise, it will return `OK` even if the data wasn't inserted.
Enables or disables waiting for processing of asynchronous insertion. If enabled, server will return `OK` only after the data is inserted. Otherwise, it will return `OK` even if the data wasn't inserted.
Possible values:
- 0 — Client returns `OK` even if the data is not yet inserted.
- 1 — Client returns `OK` only after the data is inserted.
- 0 — Server returns `OK` even if the data is not yet inserted.
- 1 — Server returns `OK` only after the data is inserted.
Default value: `1`.
@ -3867,7 +3867,7 @@ Default value: [lock_acquire_timeout](#lock_acquire_timeout).
## async_insert_max_data_size {#async-insert-max-data-size}
The maximum size of the uparsed data in bytes collected per query before being inserted.
The maximum size of the unparsed data in bytes collected per query before being inserted.
Possible values:

View File

@ -3675,8 +3675,8 @@ SELECT * FROM positional_arguments ORDER BY 2,3;
Возможные значения:
- 0 — клиент возвращает `OK` даже если вставка данных еще не завершена.
- 1 — клиент возвращает `OK` только после завершения вставки данных.
- 0 — сервер возвращает `OK` даже если вставка данных еще не завершена.
- 1 — сервер возвращает `OK` только после завершения вставки данных.
Значение по умолчанию: `1`.