mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-04 21:42:39 +00:00
11 lines
206 B
C++
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);
|
|
}
|