mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
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);
|
|
}
|