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

13 lines
152 B
C++
Raw Normal View History

#pragma once
#include <map>
namespace DB
{
typedef std::pair<const char *, const char *> StringRange;
typedef Poco::SharedPtr<String> StringPtr;
}