ClickHouse/dbms/include/DB/Parsers/StringRange.h

15 lines
174 B
C
Raw Normal View History

2010-06-24 19:12:10 +00:00
#ifndef DBMS_PARSERS_STRINGRANGE_H
#define DBMS_PARSERS_STRINGRANGE_H
#include <map>
namespace DB
{
typedef std::pair<const char *, const char *> StringRange;
}
#endif