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