ClickHouse/dbms/Parsers/ASTSelectWithUnionQuery.h
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

24 lines
543 B
C++

#pragma once
#include <Parsers/ASTQueryWithOutput.h>
namespace DB
{
/** Single SELECT query or multiple SELECT queries with UNION ALL.
* Only UNION ALL is possible. No UNION DISTINCT or plain UNION.
*/
class ASTSelectWithUnionQuery : public ASTQueryWithOutput
{
public:
String getID(char) const override { return "SelectWithUnionQuery"; }
ASTPtr clone() const override;
void formatQueryImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
ASTPtr list_of_selects;
};
}