2011-09-04 05:14:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DB/Parsers/IAST.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
|
|
|
|
|
|
/** Элемент выражения, после которого стоит ASC или DESC
|
|
|
|
*/
|
|
|
|
class ASTOrderByElement : public IAST
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int direction; /// 1, если ASC, -1, если DESC
|
|
|
|
|
|
|
|
ASTOrderByElement() {}
|
|
|
|
ASTOrderByElement(StringRange range_, int direction_) : IAST(range_), direction(direction_) {}
|
|
|
|
|
|
|
|
/** Получить текст, который идентифицирует этот элемент. */
|
2012-12-27 16:23:12 +00:00
|
|
|
String getID() const { return "OrderByElement"; }
|
2011-12-12 06:15:34 +00:00
|
|
|
|
|
|
|
ASTPtr clone() const { return new ASTOrderByElement(*this); }
|
2011-09-04 05:14:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|