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

13 lines
152 B
C
Raw Normal View History

2014-04-08 06:51:53 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
#include <map>
namespace DB
{
typedef std::pair<const char *, const char *> StringRange;
2013-02-11 11:22:15 +00:00
typedef Poco::SharedPtr<String> StringPtr;
2010-06-24 19:12:10 +00:00
}