mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
16 lines
217 B
C++
16 lines
217 B
C++
#ifndef DBMS_PARSERS_STRINGRANGE_H
|
|
#define DBMS_PARSERS_STRINGRANGE_H
|
|
|
|
#include <map>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
typedef std::pair<const char *, const char *> StringRange;
|
|
typedef Poco::SharedPtr<String> StringPtr;
|
|
|
|
}
|
|
|
|
#endif
|