mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
16 lines
338 B
C++
16 lines
338 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
|
|
#include <utility>
|
|
|
|
namespace DB
|
|
{
|
|
using ConfigurationPtr = Poco::AutoPtr<Poco::Util::AbstractConfiguration>;
|
|
|
|
using DatabaseAndTableName = std::pair<String, String>;
|
|
using ListOfDatabasesAndTableNames = std::vector<DatabaseAndTableName>;
|
|
}
|