mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
dbms: renamed variable [#METR-2944].
This commit is contained in:
parent
a58104c818
commit
1f52150f12
@ -127,13 +127,13 @@ void TCPHandler::runImpl()
|
||||
state.io = executeQuery(state.query, query_context, false, state.stage);
|
||||
|
||||
if (state.io.out)
|
||||
state.is_insert = true;
|
||||
state.need_receive_data_for_insert = true;
|
||||
|
||||
after_check_cancelled.restart();
|
||||
after_send_progress.restart();
|
||||
|
||||
/// Запрос требует приёма данных от клиента?
|
||||
if (state.is_insert)
|
||||
if (state.need_receive_data_for_insert)
|
||||
processInsertQuery(global_settings);
|
||||
else
|
||||
processOrdinaryQuery();
|
||||
@ -566,7 +566,7 @@ bool TCPHandler::receiveData()
|
||||
{
|
||||
/// Если запрос на вставку, то данные нужно писать напрямую в state.io.out.
|
||||
/// Иначе пишем блоки во временную таблицу external_table_name.
|
||||
if (!state.is_insert)
|
||||
if (!state.need_receive_data_for_insert)
|
||||
{
|
||||
StoragePtr storage;
|
||||
/// Если такой таблицы не существовало, создаем ее.
|
||||
|
@ -45,8 +45,8 @@ struct QueryState
|
||||
bool is_empty = true;
|
||||
/// Данные были отправлены.
|
||||
bool sent_all_data = false;
|
||||
/// Запрос на вставку или нет.
|
||||
bool is_insert = false;
|
||||
/// Запрос требует приёма данных от клиента (INSERT, но не INSERT SELECT).
|
||||
bool need_receive_data_for_insert = false;
|
||||
|
||||
/// Для вывода прогресса - разница после предыдущей отправки прогресса.
|
||||
Progress progress;
|
||||
|
Loading…
Reference in New Issue
Block a user