mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
13 lines
152 B
C++
13 lines
152 B
C++
#pragma once
|
|
|
|
#include <map>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef std::pair<const char *, const char *> StringRange;
|
|
typedef Poco::SharedPtr<String> StringPtr;
|
|
|
|
}
|