ClickHouse/src/Interpreters/replaceForPositionalArguments.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
200 B
C++
Raw Normal View History

2022-07-30 12:36:01 +00:00
#pragma once
2022-07-16 20:23:49 +00:00
#include <Parsers/ASTSelectQuery.h>
namespace DB
{
bool replaceForPositionalArguments(ASTPtr & argument, const ASTSelectQuery * select_query, ASTSelectQuery::Expression expression);
}