mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
14 lines
197 B
C++
14 lines
197 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <Core/Names.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Find parameters in a query and collect them into set.
|
|
NameSet analyzeReceiveQueryParams(const std::string & query);
|
|
|
|
}
|