ClickHouse/dbms/src/Common/parseGlobs.h

11 lines
188 B
C++
Raw Normal View History

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