mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
d62345bbaa
and in "SHOW TABLES" executed in any database with the "Dictionary" engine.
19 lines
285 B
C++
19 lines
285 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST_fwd.h>
|
|
#include <Poco/AutoPtr.h>
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct DictionaryAttachInfo
|
|
{
|
|
ASTPtr create_query;
|
|
Poco::AutoPtr<Poco::Util::AbstractConfiguration> config;
|
|
time_t modification_time;
|
|
};
|
|
|
|
}
|