mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
14 lines
226 B
C++
14 lines
226 B
C++
#pragma once
|
|
|
|
#include <Core/Names.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Find parameters in a query parameter values and collect them into map.
|
|
NameToNameMap analyzeFunctionParamValues(const ASTPtr & ast);
|
|
|
|
}
|