ClickHouse/dbms/include/DB/Parsers/StringRange.h
2010-06-24 19:12:10 +00:00

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