ClickHouse/dbms/src/Common/parseGlobs.h

10 lines
171 B
C++
Raw Normal View History

2019-07-21 13:15:04 +00:00
#pragma once
#include <string>
namespace DB
{
/* Parse globs in string and make a regexp for it.
*/
std::string makeRegexpPatternFromGlobs(const std::string & ipath);
}