mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +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
|