ClickHouse/dbms/include/DB/Parsers/StringRange.h
Michael Kolupaev f5cac625c6 Merge
2013-02-11 11:22:15 +00:00

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