mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
29 lines
542 B
C++
29 lines
542 B
C++
#pragma once
|
|
|
|
#include "config.h"
|
|
|
|
#if USE_MYSQL || USE_LIBPQXX
|
|
|
|
#include <Storages/StorageProxy.h>
|
|
#include <QueryPipeline/Pipe.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool needRewriteQueryWithFinalForStorage(const Names & column_names, const StoragePtr & storage);
|
|
|
|
void readFinalFromNestedStorage(
|
|
QueryPlan & query_plan,
|
|
StoragePtr nested_storage,
|
|
const Names & column_names,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
size_t num_streams);
|
|
|
|
}
|
|
|
|
#endif
|