mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
fix build
This commit is contained in:
parent
34aecc0bf3
commit
a1c98bc8c9
@ -147,6 +147,11 @@ StorageS3QueueSource::KeyWithInfo StorageS3QueueSource::QueueGlobIterator::next(
|
|||||||
return KeyWithInfo();
|
return KeyWithInfo();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t StorageS3QueueSource::QueueGlobIterator::estimatedKeysCount()
|
||||||
|
{
|
||||||
|
return keys_buf.size();
|
||||||
|
}
|
||||||
|
|
||||||
StorageS3QueueSource::StorageS3QueueSource(
|
StorageS3QueueSource::StorageS3QueueSource(
|
||||||
const ReadFromFormatInfo & info,
|
const ReadFromFormatInfo & info,
|
||||||
const String & format_,
|
const String & format_,
|
||||||
|
@ -54,6 +54,8 @@ public:
|
|||||||
Strings
|
Strings
|
||||||
filterProcessingFiles(const S3QueueMode & engine_mode, std::unordered_set<String> & exclude_keys, const String & max_file = "");
|
filterProcessingFiles(const S3QueueMode & engine_mode, std::unordered_set<String> & exclude_keys, const String & max_file = "");
|
||||||
|
|
||||||
|
size_t estimatedKeysCount() override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
UInt64 max_poll_size;
|
UInt64 max_poll_size;
|
||||||
KeysWithInfo keys_buf;
|
KeysWithInfo keys_buf;
|
||||||
|
Loading…
Reference in New Issue
Block a user