mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
12 lines
181 B
C++
12 lines
181 B
C++
#pragma once
|
|
|
|
#include <Parsers/IAST.h>
|
|
#include <Parsers/ASTExpressionList.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
ASTExpressionList * extractTableFunctionArgumentsFromSelectQuery(ASTPtr & query);
|
|
|
|
}
|