mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
connection: fixed bug with sending extra block to old-versioned server [METR-10071]
This commit is contained in:
parent
9ecf7b3f79
commit
c9c2f671f2
@ -232,8 +232,8 @@ void Connection::sendQuery(const String & query, const String & query_id_, UInt6
|
||||
block_in = NULL;
|
||||
block_out = NULL;
|
||||
|
||||
/// Отправляем пустой блок, символизируя конец передачи данных
|
||||
if (!with_pending_data)
|
||||
/// Если версия сервера достаточно новая и стоит флаг, отправляем пустой блок, символизируя конец передачи данных.
|
||||
if (server_revision > DBMS_MIN_REVISION_WITH_TEMPORARY_TABLES && !with_pending_data)
|
||||
sendData(Block());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user