ClickHouse/dbms/src/Parsers/ASTExpressionList.h

22 lines
502 B
C++
Raw Normal View History

2011-08-28 08:50:27 +00:00
#pragma once
2010-06-24 19:12:10 +00:00
#include <Parsers/IAST.h>
2010-06-24 19:12:10 +00:00
namespace DB
{
/** List of expressions, for example "a, b + c, f(d)"
2010-06-24 19:12:10 +00:00
*/
class ASTExpressionList : public IAST
{
public:
String getID() const override { return "ExpressionList"; }
2017-06-18 05:44:09 +00:00
ASTPtr clone() const override;
void formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
void formatImplMultiline(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const;
2010-06-24 19:12:10 +00:00
};
}