ClickHouse/programs/copier/Aliases.h

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

16 lines
338 B
C++
Raw Normal View History

2020-02-19 15:01:08 +00:00
#pragma once
2022-10-20 14:37:27 +00:00
#include <base/types.h>
#include <Poco/Util/AbstractConfiguration.h>
#include <utility>
2020-02-19 15:01:08 +00:00
namespace DB
{
using ConfigurationPtr = Poco::AutoPtr<Poco::Util::AbstractConfiguration>;
using DatabaseAndTableName = std::pair<String, String>;
2020-02-21 16:00:50 +00:00
using ListOfDatabasesAndTableNames = std::vector<DatabaseAndTableName>;
2020-02-19 15:01:08 +00:00
}