aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Common/parseGlobs.h
blob: 043a87884cff961a83b228f68ecd1312e2eca102 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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);
}