ClickHouse/dbms/include/DB/Parsers/ASTExpressionList.h

28 lines
518 B
C
Raw Normal View History

2010-06-24 19:12:10 +00:00
#ifndef DBMS_PARSERS_ASTEXPRESSIONLIST_H
#define DBMS_PARSERS_ASTEXPRESSIONLIST_H
#include <DB/Parsers/IAST.h>
namespace DB
{
using Poco::SharedPtr;
/** Список выражений типа "a, b + c, f(d)"
*/
class ASTExpressionList : public IAST
{
public:
2010-06-25 16:36:13 +00:00
ASTExpressionList() {}
2011-08-13 21:05:18 +00:00
ASTExpressionList(StringRange range_) : IAST(range_) {}
2010-06-24 19:12:10 +00:00
2011-08-09 19:19:00 +00:00
/** Получить текст, который идентифицирует этот элемент. */
String getID() { return "ExpressionList"; }
2010-06-24 19:12:10 +00:00
};
}
#endif