ClickHouse/src/Storages/ReadFinalForExternalReplicaStorage.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
542 B
C++
Raw Normal View History

#pragma once
#include "config.h"
#if USE_MYSQL || USE_LIBPQXX
#include <Storages/StorageProxy.h>
2021-10-16 14:03:50 +00:00
#include <QueryPipeline/Pipe.h>
namespace DB
{
bool needRewriteQueryWithFinalForStorage(const Names & column_names, const StoragePtr & storage);
2022-05-20 19:49:31 +00:00
void readFinalFromNestedStorage(
QueryPlan & query_plan,
StoragePtr nested_storage,
const Names & column_names,
SelectQueryInfo & query_info,
2021-04-11 07:44:40 +00:00
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
size_t num_streams);
}
#endif