mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 02:52:13 +00:00
Starting to remove changes to LIVE VIEW table.
This commit is contained in:
parent
34a03939ea
commit
8621e93460
@ -121,12 +121,6 @@ BlockIO InterpreterInsertQuery::execute()
|
|||||||
BlockOutputStreams out_streams;
|
BlockOutputStreams out_streams;
|
||||||
bool is_distributed_insert_select = false;
|
bool is_distributed_insert_select = false;
|
||||||
|
|
||||||
std::cerr << "!!! processing INSERT INTO\n";
|
|
||||||
if (query.watch)
|
|
||||||
std::cerr << "!!! processing INSERT INTO WATCH\n";
|
|
||||||
else
|
|
||||||
std::cerr << "!!! processing INSERT INTO that is not watch\n";
|
|
||||||
|
|
||||||
if (query.select && table->isRemote() && settings.parallel_distributed_insert_select)
|
if (query.select && table->isRemote() && settings.parallel_distributed_insert_select)
|
||||||
{
|
{
|
||||||
// Distributed INSERT SELECT
|
// Distributed INSERT SELECT
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
namespace DB
|
|
||||||
{
|
|
||||||
/// events processed by the events thread
|
|
||||||
enum LiveViewEvent
|
|
||||||
{
|
|
||||||
NONE = 0,
|
|
||||||
LAST_USER = 1,
|
|
||||||
NEW_USER = 2,
|
|
||||||
NEW_BLOCKS = 4,
|
|
||||||
SHUTDOWN = 8
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user