ClickHouse/dbms/Common/parseGlobs.h

11 lines
206 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.
*/
2020-03-08 21:18:53 +00:00
std::string makeRegexpPatternFromGlobs(const std::string & initial_str_with_globs);
2019-07-21 13:15:04 +00:00
}