mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 11:33:46 +00:00
22 lines
278 B
C
22 lines
278 B
C
|
#pragma once
|
|||
|
|
|||
|
#include <DB/Parsers/IAST.h>
|
|||
|
|
|||
|
|
|||
|
namespace DB
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
/** Запрос с секцией FORMAT.
|
|||
|
*/
|
|||
|
class ASTQueryWithOutput : public IAST
|
|||
|
{
|
|||
|
public:
|
|||
|
ASTPtr format;
|
|||
|
|
|||
|
ASTQueryWithOutput() {}
|
|||
|
ASTQueryWithOutput(StringRange range_) : IAST(range_) {}
|
|||
|
};
|
|||
|
|
|||
|
}
|