ClickHouse/src/Common/parseGlobs.h
2020-04-03 18:14:31 +03:00

11 lines
206 B
C++

#pragma once
#include <string>
#include <vector>
namespace DB
{
/* Parse globs in string and make a regexp for it.
*/
std::string makeRegexpPatternFromGlobs(const std::string & initial_str_with_globs);
}